diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-15 09:38:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-15 17:30:34 +0100 |
commit | f3424b58e914c0e94c0ca2a10652d13db53058d3 (patch) | |
tree | 1bc4af1ecc877b0293cb36a74f8dd91e84992c41 /meta | |
parent | 5d6dff59473cdf42288b5c433076549d31e3097c (diff) | |
download | poky-f3424b58e914c0e94c0ca2a10652d13db53058d3.tar.gz |
bitbake.conf: Correct BB_SIGNATURE_EXCLUDE_FLAGS
Some of the flags listed here do change the output and hence do need to
be included in task checksums.
This means we start including the following flags in function/task/variable
checksums:
type, func, export, unexport, noexec, dirs, cleandirs
(From OE-Core rev: 54e8b744bb7e7aa03277a42b0c5cf707440f8b8a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/bitbake.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 3fa2bee053..0e939aca4f 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -950,8 +950,8 @@ BB_HASHCONFIG_IGNORE_VARS ?= "${BB_HASHEXCLUDE_COMMON} DATE TIME SSH_AGENT_PID \ | |||
950 | HTTP_PROXY http_proxy HTTPS_PROXY https_proxy SOCKS5_USER SOCKS5_PASSWD \ | 950 | HTTP_PROXY http_proxy HTTPS_PROXY https_proxy SOCKS5_USER SOCKS5_PASSWD \ |
951 | BB_SETSCENE_ENFORCE BB_CMDLINE BB_SERVER_TIMEOUT" | 951 | BB_SETSCENE_ENFORCE BB_CMDLINE BB_SERVER_TIMEOUT" |
952 | BB_SIGNATURE_EXCLUDE_FLAGS ?= "doc deps depends \ | 952 | BB_SIGNATURE_EXCLUDE_FLAGS ?= "doc deps depends \ |
953 | lockfiles type vardepsexclude vardeps vardepvalue vardepvalueexclude \ | 953 | lockfiles vardepsexclude vardeps vardepvalue vardepvalueexclude \ |
954 | file-checksums python func task export unexport noexec nostamp dirs cleandirs \ | 954 | file-checksums python task nostamp \ |
955 | sstate-lockfile-shared prefuncs postfuncs export_func deptask rdeptask \ | 955 | sstate-lockfile-shared prefuncs postfuncs export_func deptask rdeptask \ |
956 | recrdeptask nodeprrecs stamp-extra-info sstate-outputdirs filename lineno \ | 956 | recrdeptask nodeprrecs stamp-extra-info sstate-outputdirs filename lineno \ |
957 | progress mcdepends number_threads" | 957 | progress mcdepends number_threads" |