diff options
author | Jesse Gilles <jgilles@multitech.com> | 2013-12-19 10:59:11 -0600 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2013-12-19 10:59:11 -0600 |
commit | d63a76089b99361530f237d3eea3d745b12ce4ea (patch) | |
tree | 2ec56fe6835c63b5a9ad1fb25ec4e011bf3384f4 /multitech/recipes | |
parent | 68fedeafc32f8844246d08471377dad36630bd5d (diff) |
images/corecdp-tftpboot.inc: add oe_bootstrap_pmecc_padded for mtocgd3
Diffstat (limited to 'multitech/recipes')
-rw-r--r-- | multitech/recipes/images/corecdp-tftpboot.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/multitech/recipes/images/corecdp-tftpboot.inc b/multitech/recipes/images/corecdp-tftpboot.inc index 3650773..35299b0 100644 --- a/multitech/recipes/images/corecdp-tftpboot.inc +++ b/multitech/recipes/images/corecdp-tftpboot.inc @@ -4,6 +4,9 @@ do_build_append () { if [ -n "${TFTPBOOT_DIR}" ]; then install -d ${DEPLOY_DIR_IMAGE} ln -nfs ${DEPLOY_DIR_IMAGE}/at91bootstrap.bin ${TFTPBOOT_DIR}/oe_bootstrap.bin + if [ "${MACHINE}" = "mtocgd3" ]; then + ln -nfs ${DEPLOY_DIR_IMAGE}/at91bootstrap_pmecc_padded.bin ${TFTPBOOT_DIR}/oe_bootstrap_pmecc_padded.bin + fi ln -nfs ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.bin ${TFTPBOOT_DIR}/oe_u-boot.bin ln -nfs ${DEPLOY_DIR_IMAGE}/uImage-${MACHINE}.bin ${TFTPBOOT_DIR}/oe_uImage.bin ln -nfs ${DEPLOY_DIR_IMAGE}/${IMAGE_BASENAME}-${MACHINE}.jffs2 ${TFTPBOOT_DIR}/oe_rootfs.jffs2 |