diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2013-06-26 14:03:27 +0200 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2013-06-26 14:03:27 +0200 |
commit | 16cc23f551c0e1bb189671a3c22f16e7e9e68d0f (patch) | |
tree | 5515c436a53d2c61fc33f7d12844a4284a8a8947 | |
parent | fb28510158462910ee98b69fb2903879c4a3c50c (diff) |
burnflash: unified T20/T30
- unified the burnflash sources to work on Colibri T20/T30, Apalis T30
- change the PXA dummy burnflash accordingly
- increase the initial free rootfs space to 100M on eMMC partition
will be resized on first boot to full partition size
relevant for Colibri T30, Apalis T30
-rw-r--r-- | recipes/images/trdx-image-fstype.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes/images/trdx-image-fstype.inc b/recipes/images/trdx-image-fstype.inc index 1e8f79e..e26c63e 100644 --- a/recipes/images/trdx-image-fstype.inc +++ b/recipes/images/trdx-image-fstype.inc @@ -15,12 +15,12 @@ do_rootfs_prepend() { do_rootfs_append() { # put u-boot, kernel into the bin directories, remove the kernel from the rootfs/boot rm ${IMAGE_ROOTFS}/boot/uImage* - cp -pP ${DEPLOY_DIR_IMAGE}/uImage* ${IMAGE_ROOTFS}/../bin/ - mv ${IMAGE_ROOTFS}/../bin/uImage-${MACHINE}.bin ${IMAGE_ROOTFS}/../bin/uImage + cp -pP ${DEPLOY_DIR_IMAGE}/uImage* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ + mv ${IMAGE_ROOTFS}/../${MACHINE}_bin/uImage-${MACHINE}.bin ${IMAGE_ROOTFS}/../${MACHINE}_bin/uImage - cp -pP ${DEPLOY_DIR_IMAGE}/u-boot* ${IMAGE_ROOTFS}/../bin/ - rm -f ${IMAGE_ROOTFS}/../bin/u-boot-hsmmc-${MACHINE}.bin - mv ${IMAGE_ROOTFS}/../bin/u-boot-${MACHINE}.bin ${IMAGE_ROOTFS}/../bin/u-boot.bin + cp -pP ${DEPLOY_DIR_IMAGE}/u-boot* ${IMAGE_ROOTFS}/../${MACHINE}_bin/ + rm -f ${IMAGE_ROOTFS}/../${MACHINE}_bin/u-boot-hsmmc-${MACHINE}.bin + mv ${IMAGE_ROOTFS}/../${MACHINE}_bin/u-boot-${MACHINE}.bin ${IMAGE_ROOTFS}/../${MACHINE}_bin/u-boot.bin # add the rootfs version to the welcome banner echo "${IMAGE_NAME}${PV}_${DATE}" >> ${IMAGE_ROOTFS}/etc/issue |