mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
bitbake: fetcher: fix getVar call due to incorrect argument datatype
(Bitbake rev: 2ac33aac3446cb12227f1b8daa5f27f417c9bb9e) Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
0fb3552632
commit
ef3755b739
@@ -543,7 +543,7 @@ def verify_checksum(ud, d):
|
|||||||
|
|
||||||
if ud.method.recommends_checksum(ud):
|
if ud.method.recommends_checksum(ud):
|
||||||
# If strict checking enabled and neither sum defined, raise error
|
# If strict checking enabled and neither sum defined, raise error
|
||||||
strict = d.getVar("BB_STRICT_CHECKSUM", "1") or "0"
|
strict = d.getVar("BB_STRICT_CHECKSUM", True) or "0"
|
||||||
if (strict == "1") and not (ud.md5_expected or ud.sha256_expected):
|
if (strict == "1") and not (ud.md5_expected or ud.sha256_expected):
|
||||||
logger.error('No checksum specified for %s, please add at least one to the recipe:\n'
|
logger.error('No checksum specified for %s, please add at least one to the recipe:\n'
|
||||||
'SRC_URI[%s] = "%s"\nSRC_URI[%s] = "%s"' %
|
'SRC_URI[%s] = "%s"\nSRC_URI[%s] = "%s"' %
|
||||||
|
|||||||
Reference in New Issue
Block a user