diff options
Diffstat (limited to 'meta/classes/uboot-sign.bbclass')
-rw-r--r-- | meta/classes/uboot-sign.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass index 57d49039a9..d56ad8e07c 100644 --- a/meta/classes/uboot-sign.bbclass +++ b/meta/classes/uboot-sign.bbclass | |||
@@ -64,7 +64,8 @@ do_concat_dtb () { | |||
64 | # Concatenate U-Boot w/o DTB & DTB with public key | 64 | # Concatenate U-Boot w/o DTB & DTB with public key |
65 | # (cf. kernel-fitimage.bbclass for more details) | 65 | # (cf. kernel-fitimage.bbclass for more details) |
66 | if [ "x${UBOOT_SIGN_ENABLE}" = "x1" ]; then | 66 | if [ "x${UBOOT_SIGN_ENABLE}" = "x1" ]; then |
67 | if [ "x${UBOOT_SUFFIX}" = "ximg" -a -e "${DEPLOYDIR}/${UBOOT_DTB_IMAGE}" ]; then | 67 | if [ "x${UBOOT_SUFFIX}" = "ximg" -o "x${UBOOT_SUFFIX}" = "xrom" ] && \ |
68 | [ -e "${DEPLOYDIR}/${UBOOT_DTB_IMAGE}" ]; then | ||
68 | oe_runmake EXT_DTB=${DEPLOYDIR}/${UBOOT_DTB_IMAGE} | 69 | oe_runmake EXT_DTB=${DEPLOYDIR}/${UBOOT_DTB_IMAGE} |
69 | install ${S}/${UBOOT_BINARY} ${DEPLOYDIR}/${UBOOT_IMAGE} | 70 | install ${S}/${UBOOT_BINARY} ${DEPLOYDIR}/${UBOOT_IMAGE} |
70 | install ${S}/${UBOOT_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_IMAGE} | 71 | install ${S}/${UBOOT_BINARY} ${DEPLOY_DIR_IMAGE}/${UBOOT_IMAGE} |