diff options
| -rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index d4b6c3ec39..6ae69cd4ab 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
| @@ -274,13 +274,10 @@ def verify_checksum(u, ud, d): | |||
| 274 | """ | 274 | """ |
| 275 | verify the MD5 and SHA256 checksum for downloaded src | 275 | verify the MD5 and SHA256 checksum for downloaded src |
| 276 | 276 | ||
| 277 | return value: | 277 | Raises a FetchError if one or both of the SRC_URI checksums do not match |
| 278 | - True: a checksum matched | 278 | the downloaded file, or if BB_STRICT_CHECKSUM is set and there are no |
| 279 | - False: neither checksum matched | 279 | checksums specified. |
| 280 | 280 | ||
| 281 | if checksum is missing in recipes file, "BB_STRICT_CHECKSUM" decide the return value. | ||
| 282 | if BB_STRICT_CHECKSUM = "1" then return false as unmatched, otherwise return true as | ||
| 283 | matched | ||
| 284 | """ | 281 | """ |
| 285 | 282 | ||
| 286 | if not ud.method.supports_checksum(ud): | 283 | if not ud.method.supports_checksum(ud): |
