diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2017-01-12 13:24:36 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-19 22:47:20 +0000 |
commit | ff14510cdf280987e97043b21bf8cc26d631f58a (patch) | |
tree | 1646e12431af8bda02a52612df024779f4ac0beb | |
parent | 4c88512843de6d1e9de6f56efe63d8b27b0957f2 (diff) | |
download | poky-ff14510cdf280987e97043b21bf8cc26d631f58a.tar.gz |
kernel-fitimage.bbclass: Check value of UBOOT_SIGN_ENABLE
Check the value of UBOOT_SIGN_ENABLE, as it is defaulted to "0" which
for matches as True in python due to being a non-empty string.
(From OE-Core rev: 35ebe793f2d933366863d17fb807b3d39f594334)
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/kernel-fitimage.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index ae6bfc52a7..c15ded523c 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b/meta/classes/kernel-fitimage.bbclass | |||
@@ -26,7 +26,7 @@ python __anonymous () { | |||
26 | # Verified boot will sign the fitImage and append the public key to | 26 | # Verified boot will sign the fitImage and append the public key to |
27 | # U-boot dtb. We ensure the U-Boot dtb is deployed before assembling | 27 | # U-boot dtb. We ensure the U-Boot dtb is deployed before assembling |
28 | # the fitImage: | 28 | # the fitImage: |
29 | if d.getVar('UBOOT_SIGN_ENABLE'): | 29 | if d.getVar('UBOOT_SIGN_ENABLE') == "1": |
30 | uboot_pn = d.getVar('PREFERRED_PROVIDER_u-boot') or 'u-boot' | 30 | uboot_pn = d.getVar('PREFERRED_PROVIDER_u-boot') or 'u-boot' |
31 | d.appendVarFlag('do_assemble_fitimage', 'depends', ' %s:do_deploy' % uboot_pn) | 31 | d.appendVarFlag('do_assemble_fitimage', 'depends', ' %s:do_deploy' % uboot_pn) |
32 | } | 32 | } |