diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-02 17:12:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-03 15:51:37 +0100 |
commit | 072a0b3e872aeb32ee3470b72a72c8167f420aa4 (patch) | |
tree | 237e0ff7d50c0165457cd5d4ba85dded91fa7087 /meta-poky | |
parent | f3c029f76d297250c9644aea40d253640befcc98 (diff) | |
download | poky-072a0b3e872aeb32ee3470b72a72c8167f420aa4.tar.gz |
poky: Exclude DATE from DISTRO/SDK_VERSION checksums
DATE is in HASHCONFIG_WHITELIST which means the server does not reparse when
DATE changes. If DISTRO_VERSION was used somewhere and contained DATE, the
value *would* change however, meaning the server and worker checksums
could end up differing.
We therefore exclude DATE from the checksums, making everything consistent.
(From meta-yocto rev: b5d6379ab9484acd3ea22fa9faeeaf0a1e2c2550)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky')
-rw-r--r-- | meta-poky/conf/distro/poky.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf index 7627abefa9..f166ac40c0 100644 --- a/meta-poky/conf/distro/poky.conf +++ b/meta-poky/conf/distro/poky.conf | |||
@@ -11,6 +11,9 @@ TARGET_VENDOR = "-poky" | |||
11 | 11 | ||
12 | LOCALCONF_VERSION = "1" | 12 | LOCALCONF_VERSION = "1" |
13 | 13 | ||
14 | DISTRO_VERSION[vardepsexclude] = "DATE" | ||
15 | SDK_VERSION[vardepsexclude] = "DATE" | ||
16 | |||
14 | # Override these in poky based distros | 17 | # Override these in poky based distros |
15 | POKY_DEFAULT_DISTRO_FEATURES = "largefile opengl ptest multiarch wayland" | 18 | POKY_DEFAULT_DISTRO_FEATURES = "largefile opengl ptest multiarch wayland" |
16 | POKY_DEFAULT_EXTRA_RDEPENDS = "packagegroup-core-boot" | 19 | POKY_DEFAULT_EXTRA_RDEPENDS = "packagegroup-core-boot" |