diff options
author | Koen Kooi <koen@openembedded.org> | 2009-01-21 20:29:53 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-02-03 15:46:04 +0100 |
commit | 72ead1798f650dec45aa4c59fd3f2593a84c7b88 (patch) | |
tree | 17b71f8163596861e44ed1e48cdcfa2ef662d13b /conf/bitbake.conf | |
parent | 46cb6c7c32ac5d88df27f138abb631071b2211fb (diff) |
base.bbclass: only error out on missing checksums when OE_STRICT_CHECKSUMS is set * we want to error out on non-matching sums, missing ones are less bad
* People can now set OE_STRICT_CHECKSUMS = "" in local.conf to make a missing checksum a warning, but checksum errors are still fatal, as it should
Diffstat (limited to 'conf/bitbake.conf')
-rw-r--r-- | conf/bitbake.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 7c9dceee5f..81d4c93dc0 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -472,6 +472,8 @@ export palmqtdir = "${palmtopdir}" # Download locations and utilities. ################################################################## +OE_STRICT_CHECKSUMS ?= "1" + GNU_MIRROR = "ftp://ftp.gnu.org/gnu" DEBIAN_MIRROR = "ftp://ftp.debian.org/debian/pool" SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net" |