diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/uboot-sign.bbclass | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass index 713196df41..d590971a27 100644 --- a/meta/classes/uboot-sign.bbclass +++ b/meta/classes/uboot-sign.bbclass | |||
@@ -123,6 +123,15 @@ do_deploy_prepend_pn-${UBOOT_PN}() { | |||
123 | fi | 123 | fi |
124 | } | 124 | } |
125 | 125 | ||
126 | do_deploy_append_pn-${UBOOT_PN}() { | ||
127 | # If we're creating a u-boot fitImage, point u-boot.bin | ||
128 | # symlink since it might get used by image recipes | ||
129 | if [ "${UBOOT_FITIMAGE_ENABLE}" = "1" ] ; then | ||
130 | ln -sf ${UBOOT_FITIMAGE_IMAGE} ${DEPLOYDIR}/${UBOOT_BINARY} | ||
131 | ln -sf ${UBOOT_FITIMAGE_IMAGE} ${DEPLOYDIR}/${UBOOT_SYMLINK} | ||
132 | fi | ||
133 | } | ||
134 | |||
126 | python () { | 135 | python () { |
127 | if d.getVar('UBOOT_SIGN_ENABLE') == '1' and d.getVar('PN') == d.getVar('UBOOT_PN') and d.getVar('UBOOT_DTB_BINARY'): | 136 | if d.getVar('UBOOT_SIGN_ENABLE') == '1' and d.getVar('PN') == d.getVar('UBOOT_PN') and d.getVar('UBOOT_DTB_BINARY'): |
128 | kernel_pn = d.getVar('PREFERRED_PROVIDER_virtual/kernel') | 137 | kernel_pn = d.getVar('PREFERRED_PROVIDER_virtual/kernel') |