diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-30 12:24:18 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-30 12:24:18 +0000 |
commit | b75330e99bf41da1854accaa99ea5cb942367e2b (patch) | |
tree | 7f015b9b5eef0e0cfe106221b30000633211a17a /meta/conf/bitbake.conf | |
parent | a270c0e5fa2c319affe2e959030c1e8f4018bd50 (diff) | |
download | openembedded-core-b75330e99bf41da1854accaa99ea5cb942367e2b.tar.gz openembedded-core-b75330e99bf41da1854accaa99ea5cb942367e2b.tar.bz2 openembedded-core-b75330e99bf41da1854accaa99ea5cb942367e2b.zip |
bitbake.conf: Set a default hash policy globally, not just in the poky distro config
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index c26beea959..30fcc7947b 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -725,3 +725,9 @@ DISTRO[unexport] = "1" # Used by canadian-cross to handle string conversions on TARGET_ARCH where needed TRANSLATED_TARGET_ARCH ??= ${TARGET_ARCH} + +# Setup our default hash policy +BB_SIGNATURE_HANDLER ?= "basic" +BB_HASHTASK_WHITELIST ?= "(.*-cross$|.*-native$|.*-cross-initial$|.*-cross-intermediate$|^virtual:native:.*|^virtual:nativesdk:.*)" +BB_HASHBASE_WHITELIST ?= "TMPDIR FILE PATH PWD BB_TASKHASH BBPATH DL_DIR SSTATE_DIR THISDIR FILESEXTRAPATHS FILE_DIRNAME HOME LOGNAME SHELL TERM USER" + |