diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-02-24 21:45:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-24 23:25:52 +0000 |
commit | ee86f899e131469a220eb4ad2239f796f82cee5c (patch) | |
tree | 87ec0aa534259ea0314c22f81ddd43cc6edda509 | |
parent | b6bd0f8a326e8d5192f0d02f46b58865bbfbdd72 (diff) | |
download | poky-ee86f899e131469a220eb4ad2239f796f82cee5c.tar.gz |
layer.conf: use += for SIGGEN_EXCLUDERECIPES_ABISAFE and split to multiple lines
* += is important, because if oe-core is in BBLAYERS after some other
layers with SIGGEN_EXCLUDERECIPES_ABISAFE it overwrites their entries
(From OE-Core rev: 3aa1bb01c0fa91bcb7d9a03198d19ac88a1bdecb)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/layer.conf | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index c0c2930f0d..dac9c97b62 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf | |||
@@ -18,4 +18,13 @@ PATH := "${PATH}:${COREBASE}/scripts" | |||
18 | 18 | ||
19 | QEMUIMAGETESTS := "${COREBASE}/scripts/qemuimage-tests" | 19 | QEMUIMAGETESTS := "${COREBASE}/scripts/qemuimage-tests" |
20 | 20 | ||
21 | SIGGEN_EXCLUDERECIPES_ABISAFE = "sysvinit-inittab shadow-securetty opkg-config-base netbase formfactor xserver-xf86-config pointercal base-files" | 21 | SIGGEN_EXCLUDERECIPES_ABISAFE += " \ |
22 | sysvinit-inittab \ | ||
23 | shadow-securetty \ | ||
24 | opkg-config-base \ | ||
25 | netbase \ | ||
26 | formfactor \ | ||
27 | xserver-xf86-config \ | ||
28 | pointercal \ | ||
29 | base-files \ | ||
30 | " | ||