diff options
Diffstat (limited to 'bitbake')
| -rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 5c02317764..2e615b2d6a 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
| @@ -584,6 +584,12 @@ def verify_checksum(ud, d, precomputed={}): | |||
| 584 | ud.sha256_name, sha256data)) | 584 | ud.sha256_name, sha256data)) |
| 585 | raise NoChecksumError('Missing SRC_URI checksum', ud.url) | 585 | raise NoChecksumError('Missing SRC_URI checksum', ud.url) |
| 586 | 586 | ||
| 587 | if strict == "ignore": | ||
| 588 | return { | ||
| 589 | _MD5_KEY: md5data, | ||
| 590 | _SHA256_KEY: sha256data | ||
| 591 | } | ||
| 592 | |||
| 587 | # Log missing sums so user can more easily add them | 593 | # Log missing sums so user can more easily add them |
| 588 | logger.warning('Missing md5 SRC_URI checksum for %s, consider adding to the recipe:\n' | 594 | logger.warning('Missing md5 SRC_URI checksum for %s, consider adding to the recipe:\n' |
| 589 | 'SRC_URI[%s] = "%s"', | 595 | 'SRC_URI[%s] = "%s"', |
