diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-23 20:01:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-23 21:39:00 +0100 |
commit | 33cff3ef345d925c3cce51f21491c78781e1c996 (patch) | |
tree | 006fe798cde948f09111a788ec6e0cf1ce1ca666 /meta/conf | |
parent | 4ebd2e49152e3e748b29acd29fbce3fbd07cd676 (diff) | |
download | poky-33cff3ef345d925c3cce51f21491c78781e1c996.tar.gz |
layer.conf: Mark opkg-utils as ABISAFE for update-alternatives usage
Currently linux-firmware rebuilds for each machine due to its usage of
update-alternatives which in turn means a dependency on opkg-utils.
Marking opkg-utils as ABISAFE is the only option we have right now
to avoid this.
(From OE-Core rev: 6829c0e161c4a8cde6624f211865922fce62d4fa)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/layer.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 4deee8934b..de96548bd2 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf | |||
@@ -14,6 +14,7 @@ LAYERVERSION_core = "4" | |||
14 | # Set a variable to get to the top of the metadata location | 14 | # Set a variable to get to the top of the metadata location |
15 | COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}' | 15 | COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}' |
16 | 16 | ||
17 | # opkg-utils is for update-altnernatives :( | ||
17 | SIGGEN_EXCLUDERECIPES_ABISAFE += " \ | 18 | SIGGEN_EXCLUDERECIPES_ABISAFE += " \ |
18 | sysvinit-inittab \ | 19 | sysvinit-inittab \ |
19 | shadow-securetty \ | 20 | shadow-securetty \ |
@@ -34,6 +35,7 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \ | |||
34 | shadow \ | 35 | shadow \ |
35 | shadow-sysroot \ | 36 | shadow-sysroot \ |
36 | base-passwd \ | 37 | base-passwd \ |
38 | opkg-utils \ | ||
37 | " | 39 | " |
38 | 40 | ||
39 | SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ | 41 | SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ |