From 910ad275f01a753ff09b43f54a58e9084fe570df Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Fri, 7 Apr 2017 15:01:19 +0200 Subject: tdx-image-fstype.inc: renamed from trdx-image-fstype.inc Signed-off-by: Marcel Ziswiler Acked-by: Dominik Sliwa --- recipes-images/images/angstrom-lxde-image.bb | 2 +- recipes-images/images/angstrom-qt-x11-image.bb | 2 +- recipes-images/images/angstrom-qt5-x11-image.bb | 2 +- recipes-images/images/console-trdx-image.bb | 2 +- recipes-images/images/qt4e-demo-image.bb | 2 +- recipes-images/images/tdx-image-fstype.inc | 172 ++++++++++++++++++++++++ recipes-images/images/trdx-image-fstype.inc | 172 ------------------------ 7 files changed, 177 insertions(+), 177 deletions(-) create mode 100644 recipes-images/images/tdx-image-fstype.inc delete mode 100644 recipes-images/images/trdx-image-fstype.inc diff --git a/recipes-images/images/angstrom-lxde-image.bb b/recipes-images/images/angstrom-lxde-image.bb index 4866e36..8fe3011 100644 --- a/recipes-images/images/angstrom-lxde-image.bb +++ b/recipes-images/images/angstrom-lxde-image.bb @@ -21,7 +21,7 @@ IMAGE_NAME = "${MACHINE}_${IMAGE_BASENAME}" SYSTEMD_DEFAULT_TARGET = "graphical.target" #create the deployment directory-tree -require recipes-images/images/trdx-image-fstype.inc +require recipes-images/images/tdx-image-fstype.inc IMAGE_LINGUAS = "en-us" #IMAGE_LINGUAS = "de-de fr-fr en-gb en-us pt-br es-es kn-in ml-in ta-in" diff --git a/recipes-images/images/angstrom-qt-x11-image.bb b/recipes-images/images/angstrom-qt-x11-image.bb index fcccc70..f3d1ded 100644 --- a/recipes-images/images/angstrom-qt-x11-image.bb +++ b/recipes-images/images/angstrom-qt-x11-image.bb @@ -21,7 +21,7 @@ IMAGE_NAME = "${MACHINE}_${IMAGE_BASENAME}" SYSTEMD_DEFAULT_TARGET = "graphical.target" #create the deployment directory-tree -require recipes-images/images/trdx-image-fstype.inc +require recipes-images/images/tdx-image-fstype.inc IMAGE_LINGUAS = "en-us" #IMAGE_LINGUAS = "de-de fr-fr en-gb en-us pt-br es-es kn-in ml-in ta-in" diff --git a/recipes-images/images/angstrom-qt5-x11-image.bb b/recipes-images/images/angstrom-qt5-x11-image.bb index 706ff5e..19ecd84 100644 --- a/recipes-images/images/angstrom-qt5-x11-image.bb +++ b/recipes-images/images/angstrom-qt5-x11-image.bb @@ -25,7 +25,7 @@ IMAGE_NAME = "${MACHINE}_${IMAGE_BASENAME}" SYSTEMD_DEFAULT_TARGET = "graphical.target" #create the deployment directory-tree -require recipes-images/images/trdx-image-fstype.inc +require recipes-images/images/tdx-image-fstype.inc inherit populate_sdk populate_sdk_qt5 diff --git a/recipes-images/images/console-trdx-image.bb b/recipes-images/images/console-trdx-image.bb index 1c7d6b0..2a562bc 100644 --- a/recipes-images/images/console-trdx-image.bb +++ b/recipes-images/images/console-trdx-image.bb @@ -21,7 +21,7 @@ IMAGE_NAME = "${MACHINE}_${IMAGE_BASENAME}" SYSTEMD_DEFAULT_TARGET = "graphical.target" #create the deployment directory-tree -require recipes-images/images/trdx-image-fstype.inc +require recipes-images/images/tdx-image-fstype.inc IMAGE_LINGUAS = "en-us" #IMAGE_LINGUAS = "de-de fr-fr en-gb en-us pt-br es-es kn-in ml-in ta-in" diff --git a/recipes-images/images/qt4e-demo-image.bb b/recipes-images/images/qt4e-demo-image.bb index 034978b..0fb117b 100644 --- a/recipes-images/images/qt4e-demo-image.bb +++ b/recipes-images/images/qt4e-demo-image.bb @@ -14,7 +14,7 @@ IMAGE_NAME_colibri-vf = "Colibri-VF_${IMAGE_BASENAME}" SYSTEMD_DEFAULT_TARGET = "graphical.target" #create the deployment directory-tree -require recipes-images/images/trdx-image-fstype.inc +require recipes-images/images/tdx-image-fstype.inc IMAGE_LINGUAS = "en-us" #IMAGE_LINGUAS = "de-de fr-fr en-gb en-us pt-br es-es kn-in ml-in ta-in" diff --git a/recipes-images/images/tdx-image-fstype.inc b/recipes-images/images/tdx-image-fstype.inc new file mode 100644 index 0000000..db4e1fb --- /dev/null +++ b/recipes-images/images/tdx-image-fstype.inc @@ -0,0 +1,172 @@ +#create the deployment directory-tree + +include conf/tdx_version.conf + +BURNFLASH := "${THISDIR}/files/${MACHINE}" +IMAGE_DIR = "${IMAGE_NAME}_${PV}" +IMAGE_ROOTFS = "${WORKDIR}/${IMAGE_DIR}/rootfs" + +U_BOOT_EXT = "bin" +U_BOOT_EXT_mx6 = "imx" +U_BOOT_EXT_mx7 = "imx" +U_BOOT_EXT_vf = "imx" +U_BOOT_SYMLINK = "u-boot-${MACHINE}.${U_BOOT_EXT}" +U_BOOT_SYMLINK_tegra = "u-boot-dtb-tegra-${MACHINE}.${U_BOOT_EXT}" +U_BOOT_SYMLINK_tegra124 = "u-boot-dtb-tegra-${MACHINE}.${U_BOOT_EXT}" +U_BOOT_SYMLINK_tegra124m = "u-boot-dtb-tegra-${MACHINE}.${U_BOOT_EXT}" +U_BOOT_BINARY = "u-boot.${U_BOOT_EXT}" +U_BOOT_BINARY_tegra = "u-boot-dtb-tegra.${U_BOOT_EXT}" +U_BOOT_BINARY_tegra124 = "u-boot-dtb-tegra.${U_BOOT_EXT}" +U_BOOT_BINARY_tegra124m = "u-boot-dtb-tegra.${U_BOOT_EXT}" + +#we need some native tools for deployment +DEPENDS_append_mx6 = " imx-loader-native" +DEPENDS_append_mx7 = " mtd-utils-native imx-loader-native" +DEPENDS_append_tegra = " cbootimage-native tegrarcm-native" +DEPENDS_append_tegra124 = " cbootimage-native tegrarcm-native" +DEPENDS_append_tegra124m = " cbootimage-native tegrarcm-native" +DEPENDS_append_tegra2 = " mtd-utils-native" +DEPENDS_append_vf = " mtd-utils-native imx-loader-native" +#we need mkimage to produce the U-Boot scripts even if not building a uImage kernel +DEPENDS_append_arm = " virtual/bootloader u-boot-mkimage-native" +DEPENDS_remove_qemuarm = "virtual/bootloader" + +imagedeploytools() { + # default to nothing to deploy + : +} + +imagedeploytools_append_mx6() { + IMAGE_ROOT="${IMAGE_ROOTFS}/../imx_flash/" + rm -f ${IMAGE_ROOT}/imx_flash/imx_usb ${IMAGE_ROOT}/imx_flash/*.conf + mkdir -p ${IMAGE_ROOT} + + # add imx-loader and its configuration files + cp ${STAGING_BINDIR_NATIVE}/imx_usb ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/imx_usb + cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/imx_usb.conf ${IMAGE_ROOT}/ + cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/mx6_usb_work.conf ${IMAGE_ROOT}/ +} + +imagedeploytools_append_mx7() { + IMAGE_ROOT="${IMAGE_ROOTFS}/../imx_flash/" + rm -f ${IMAGE_ROOT}/mkfs.ubifs ${IMAGE_ROOT}/imx_usb + mkdir -p ${IMAGE_ROOT} + + # add the mkfs.ubifs binary + cp ${STAGING_DIR_NATIVE}/usr/sbin/mkfs.ubifs ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/mkfs.ubifs + + # add imx-loader and its configuration files + cp ${STAGING_BINDIR_NATIVE}/imx_usb ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/imx_usb + cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/imx_usb.conf ${IMAGE_ROOT}/ + cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/mx7_usb_work.conf ${IMAGE_ROOT}/ +} + +imagedeploytools_append_tegra() { + IMAGE_ROOT="${IMAGE_ROOTFS}/../tegra-uboot-flasher/" + mkdir -p ${IMAGE_ROOT} + + # add cbootimage and tegrarcm + cp ${STAGING_BINDIR_NATIVE}/cbootimage ${IMAGE_ROOT}/ + cp ${STAGING_BINDIR_NATIVE}/tegrarcm ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/cbootimage + ${BUILD_STRIP} ${IMAGE_ROOT}/tegrarcm +} + +imagedeploytools_append_tegra2() { + # add the mkfs.ubifs binary + cp ${STAGING_DIR_NATIVE}/usr/sbin/mkfs.ubifs ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/mkfs.ubifs +} + +imagedeploytools_append_tegra124() { + IMAGE_ROOT="${IMAGE_ROOTFS}/../tegra-uboot-flasher/" + mkdir -p ${IMAGE_ROOT} + + # add cbootimage and tegrarcm + cp ${STAGING_BINDIR_NATIVE}/cbootimage ${IMAGE_ROOT}/ + cp ${STAGING_BINDIR_NATIVE}/tegrarcm ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/cbootimage + ${BUILD_STRIP} ${IMAGE_ROOT}/tegrarcm +} + +imagedeploytools_append_tegra124m() { + IMAGE_ROOT="${IMAGE_ROOTFS}/../tegra-uboot-flasher/" + mkdir -p ${IMAGE_ROOT} + + # add cbootimage and tegrarcm + cp ${STAGING_BINDIR_NATIVE}/cbootimage ${IMAGE_ROOT}/ + cp ${STAGING_BINDIR_NATIVE}/tegrarcm ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/cbootimage + ${BUILD_STRIP} ${IMAGE_ROOT}/tegrarcm +} + + +imagedeploytools_append_vf() { + IMAGE_ROOT="${IMAGE_ROOTFS}/../vf_flash/" + rm -f ${IMAGE_ROOT}/mkfs.ubifs ${IMAGE_ROOT}/imx_uart + mkdir -p ${IMAGE_ROOT} + + # add the mkfs.ubifs binary + cp ${STAGING_DIR_NATIVE}/usr/sbin/mkfs.ubifs ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/mkfs.ubifs + + # add imx-loader and its configuration files + cp ${STAGING_BINDIR_NATIVE}/imx_uart ${IMAGE_ROOT}/ + ${BUILD_STRIP} ${IMAGE_ROOT}/imx_uart* + cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/vybrid_usb_work.conf ${IMAGE_ROOT}/ +} + +imagedeploy_kernel() { + # put kernel, existing device-tree(s) into the bin directories + cp -pP ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ + ls ${DEPLOY_DIR_IMAGE}/*.dtb 2> /dev/null && cp -pP ${DEPLOY_DIR_IMAGE}/*.dtb ${IMAGE_ROOTFS}/../${MACHINE}_bin/ + mv ${IMAGE_ROOTFS}/../${MACHINE}_bin/${KERNEL_IMAGETYPE}-${MACHINE}.bin ${IMAGE_ROOTFS}/../${MACHINE}_bin/${KERNEL_IMAGETYPE} +} + +fakeroot imagedeploy() { + : +} + +fakeroot imagedeploy_arm() { + cd ${WORKDIR} + cp -Lr ${BURNFLASH}/* ${IMAGE_DIR}/ + + cd ${IMAGE_DIR}/${MACHINE}_bin + ./mk-u-boot-scripts.sh + cd ${WORKDIR} + + imagedeploy_kernel + + cp -P ${DEPLOY_DIR_IMAGE}/u-boot* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ + if [ -e ${DEPLOY_DIR_IMAGE}/SPL ] + then + cp -P ${DEPLOY_DIR_IMAGE}/SPL* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ + fi + rm -f ${IMAGE_ROOTFS}/../${MACHINE}_bin/u-boot-hsmmc-${MACHINE}.${U_BOOT_EXT} + mv ${IMAGE_ROOTFS}/../${MACHINE}_bin/${U_BOOT_SYMLINK} ${IMAGE_ROOTFS}/../${MACHINE}_bin/${U_BOOT_BINARY} + + # add the rootfs version to the welcome banner + echo -n "${IMAGE_NAME} ${PV}" >> ${IMAGE_ROOTFS}/etc/issue + echo " ${TDX_VERDATE}" | sed 's/-//' >> ${IMAGE_ROOTFS}/etc/issue + echo "" >> ${IMAGE_ROOTFS}/etc/issue + + # add additional tools if required + imagedeploytools + + # remove intermediate file rootfs.lock + rm -f ${IMAGE_DIR}/rootfs.lock + + #create tarball + tar -cjf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}_${TDX_VER_EXT}.tar.bz2 ${IMAGE_DIR} +} + +fakeroot do_imagedeploy() { + imagedeploy +} +addtask imagedeploy after do_rootfs before do_image_complete + +# make sure to rerun do_rootfs before do_imagedeploy is executed +do_imagedeploy[vardep] = "do_rootfs" diff --git a/recipes-images/images/trdx-image-fstype.inc b/recipes-images/images/trdx-image-fstype.inc deleted file mode 100644 index db4e1fb..0000000 --- a/recipes-images/images/trdx-image-fstype.inc +++ /dev/null @@ -1,172 +0,0 @@ -#create the deployment directory-tree - -include conf/tdx_version.conf - -BURNFLASH := "${THISDIR}/files/${MACHINE}" -IMAGE_DIR = "${IMAGE_NAME}_${PV}" -IMAGE_ROOTFS = "${WORKDIR}/${IMAGE_DIR}/rootfs" - -U_BOOT_EXT = "bin" -U_BOOT_EXT_mx6 = "imx" -U_BOOT_EXT_mx7 = "imx" -U_BOOT_EXT_vf = "imx" -U_BOOT_SYMLINK = "u-boot-${MACHINE}.${U_BOOT_EXT}" -U_BOOT_SYMLINK_tegra = "u-boot-dtb-tegra-${MACHINE}.${U_BOOT_EXT}" -U_BOOT_SYMLINK_tegra124 = "u-boot-dtb-tegra-${MACHINE}.${U_BOOT_EXT}" -U_BOOT_SYMLINK_tegra124m = "u-boot-dtb-tegra-${MACHINE}.${U_BOOT_EXT}" -U_BOOT_BINARY = "u-boot.${U_BOOT_EXT}" -U_BOOT_BINARY_tegra = "u-boot-dtb-tegra.${U_BOOT_EXT}" -U_BOOT_BINARY_tegra124 = "u-boot-dtb-tegra.${U_BOOT_EXT}" -U_BOOT_BINARY_tegra124m = "u-boot-dtb-tegra.${U_BOOT_EXT}" - -#we need some native tools for deployment -DEPENDS_append_mx6 = " imx-loader-native" -DEPENDS_append_mx7 = " mtd-utils-native imx-loader-native" -DEPENDS_append_tegra = " cbootimage-native tegrarcm-native" -DEPENDS_append_tegra124 = " cbootimage-native tegrarcm-native" -DEPENDS_append_tegra124m = " cbootimage-native tegrarcm-native" -DEPENDS_append_tegra2 = " mtd-utils-native" -DEPENDS_append_vf = " mtd-utils-native imx-loader-native" -#we need mkimage to produce the U-Boot scripts even if not building a uImage kernel -DEPENDS_append_arm = " virtual/bootloader u-boot-mkimage-native" -DEPENDS_remove_qemuarm = "virtual/bootloader" - -imagedeploytools() { - # default to nothing to deploy - : -} - -imagedeploytools_append_mx6() { - IMAGE_ROOT="${IMAGE_ROOTFS}/../imx_flash/" - rm -f ${IMAGE_ROOT}/imx_flash/imx_usb ${IMAGE_ROOT}/imx_flash/*.conf - mkdir -p ${IMAGE_ROOT} - - # add imx-loader and its configuration files - cp ${STAGING_BINDIR_NATIVE}/imx_usb ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/imx_usb - cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/imx_usb.conf ${IMAGE_ROOT}/ - cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/mx6_usb_work.conf ${IMAGE_ROOT}/ -} - -imagedeploytools_append_mx7() { - IMAGE_ROOT="${IMAGE_ROOTFS}/../imx_flash/" - rm -f ${IMAGE_ROOT}/mkfs.ubifs ${IMAGE_ROOT}/imx_usb - mkdir -p ${IMAGE_ROOT} - - # add the mkfs.ubifs binary - cp ${STAGING_DIR_NATIVE}/usr/sbin/mkfs.ubifs ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/mkfs.ubifs - - # add imx-loader and its configuration files - cp ${STAGING_BINDIR_NATIVE}/imx_usb ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/imx_usb - cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/imx_usb.conf ${IMAGE_ROOT}/ - cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/mx7_usb_work.conf ${IMAGE_ROOT}/ -} - -imagedeploytools_append_tegra() { - IMAGE_ROOT="${IMAGE_ROOTFS}/../tegra-uboot-flasher/" - mkdir -p ${IMAGE_ROOT} - - # add cbootimage and tegrarcm - cp ${STAGING_BINDIR_NATIVE}/cbootimage ${IMAGE_ROOT}/ - cp ${STAGING_BINDIR_NATIVE}/tegrarcm ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/cbootimage - ${BUILD_STRIP} ${IMAGE_ROOT}/tegrarcm -} - -imagedeploytools_append_tegra2() { - # add the mkfs.ubifs binary - cp ${STAGING_DIR_NATIVE}/usr/sbin/mkfs.ubifs ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/mkfs.ubifs -} - -imagedeploytools_append_tegra124() { - IMAGE_ROOT="${IMAGE_ROOTFS}/../tegra-uboot-flasher/" - mkdir -p ${IMAGE_ROOT} - - # add cbootimage and tegrarcm - cp ${STAGING_BINDIR_NATIVE}/cbootimage ${IMAGE_ROOT}/ - cp ${STAGING_BINDIR_NATIVE}/tegrarcm ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/cbootimage - ${BUILD_STRIP} ${IMAGE_ROOT}/tegrarcm -} - -imagedeploytools_append_tegra124m() { - IMAGE_ROOT="${IMAGE_ROOTFS}/../tegra-uboot-flasher/" - mkdir -p ${IMAGE_ROOT} - - # add cbootimage and tegrarcm - cp ${STAGING_BINDIR_NATIVE}/cbootimage ${IMAGE_ROOT}/ - cp ${STAGING_BINDIR_NATIVE}/tegrarcm ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/cbootimage - ${BUILD_STRIP} ${IMAGE_ROOT}/tegrarcm -} - - -imagedeploytools_append_vf() { - IMAGE_ROOT="${IMAGE_ROOTFS}/../vf_flash/" - rm -f ${IMAGE_ROOT}/mkfs.ubifs ${IMAGE_ROOT}/imx_uart - mkdir -p ${IMAGE_ROOT} - - # add the mkfs.ubifs binary - cp ${STAGING_DIR_NATIVE}/usr/sbin/mkfs.ubifs ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/mkfs.ubifs - - # add imx-loader and its configuration files - cp ${STAGING_BINDIR_NATIVE}/imx_uart ${IMAGE_ROOT}/ - ${BUILD_STRIP} ${IMAGE_ROOT}/imx_uart* - cp ${STAGING_ETCDIR_NATIVE}/imx-loader.d/vybrid_usb_work.conf ${IMAGE_ROOT}/ -} - -imagedeploy_kernel() { - # put kernel, existing device-tree(s) into the bin directories - cp -pP ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ - ls ${DEPLOY_DIR_IMAGE}/*.dtb 2> /dev/null && cp -pP ${DEPLOY_DIR_IMAGE}/*.dtb ${IMAGE_ROOTFS}/../${MACHINE}_bin/ - mv ${IMAGE_ROOTFS}/../${MACHINE}_bin/${KERNEL_IMAGETYPE}-${MACHINE}.bin ${IMAGE_ROOTFS}/../${MACHINE}_bin/${KERNEL_IMAGETYPE} -} - -fakeroot imagedeploy() { - : -} - -fakeroot imagedeploy_arm() { - cd ${WORKDIR} - cp -Lr ${BURNFLASH}/* ${IMAGE_DIR}/ - - cd ${IMAGE_DIR}/${MACHINE}_bin - ./mk-u-boot-scripts.sh - cd ${WORKDIR} - - imagedeploy_kernel - - cp -P ${DEPLOY_DIR_IMAGE}/u-boot* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ - if [ -e ${DEPLOY_DIR_IMAGE}/SPL ] - then - cp -P ${DEPLOY_DIR_IMAGE}/SPL* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ - fi - rm -f ${IMAGE_ROOTFS}/../${MACHINE}_bin/u-boot-hsmmc-${MACHINE}.${U_BOOT_EXT} - mv ${IMAGE_ROOTFS}/../${MACHINE}_bin/${U_BOOT_SYMLINK} ${IMAGE_ROOTFS}/../${MACHINE}_bin/${U_BOOT_BINARY} - - # add the rootfs version to the welcome banner - echo -n "${IMAGE_NAME} ${PV}" >> ${IMAGE_ROOTFS}/etc/issue - echo " ${TDX_VERDATE}" | sed 's/-//' >> ${IMAGE_ROOTFS}/etc/issue - echo "" >> ${IMAGE_ROOTFS}/etc/issue - - # add additional tools if required - imagedeploytools - - # remove intermediate file rootfs.lock - rm -f ${IMAGE_DIR}/rootfs.lock - - #create tarball - tar -cjf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}_${TDX_VER_EXT}.tar.bz2 ${IMAGE_DIR} -} - -fakeroot do_imagedeploy() { - imagedeploy -} -addtask imagedeploy after do_rootfs before do_image_complete - -# make sure to rerun do_rootfs before do_imagedeploy is executed -do_imagedeploy[vardep] = "do_rootfs" -- cgit v1.2.3