summaryrefslogtreecommitdiffstats
path: root/meta/conf/layer.conf
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/layer.conf')
-rw-r--r--meta/conf/layer.conf47
1 files changed, 47 insertions, 0 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf
new file mode 100644
index 0000000000..de96548bd2
--- /dev/null
+++ b/meta/conf/layer.conf
@@ -0,0 +1,47 @@
1# We have a conf and classes directory, add to BBPATH
2BBPATH .= ":${LAYERDIR}"
3# We have recipes-* directories, add to BBFILES
4BBFILES += "${LAYERDIR}/recipes-*/*/*.bb"
5
6BBFILE_COLLECTIONS += "core"
7BBFILE_PATTERN_core = "^${LAYERDIR}/"
8BBFILE_PRIORITY_core = "5"
9
10# This should only be incremented on significant changes that will
11# cause compatibility issues with other layers
12LAYERVERSION_core = "4"
13
14# Set a variable to get to the top of the metadata location
15COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}'
16
17# opkg-utils is for update-altnernatives :(
18SIGGEN_EXCLUDERECIPES_ABISAFE += " \
19 sysvinit-inittab \
20 shadow-securetty \
21 opkg-config-base \
22 netbase \
23 init-ifupdown \
24 connman-conf \
25 formfactor \
26 xserver-xf86-config \
27 pointercal \
28 pointercal-xinput \
29 base-files \
30 keymaps \
31 udev-extraconf \
32 packagegroup-x11-xserver \
33 systemd-serialgetty \
34 initscripts \
35 shadow \
36 shadow-sysroot \
37 base-passwd \
38 opkg-utils \
39"
40
41SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
42 gcc-cross-${TARGET_ARCH}->glibc \
43 gcc-cross-${TARGET_ARCH}->musl \
44 gcc-cross-${TARGET_ARCH}->uclibc \
45 gcc-cross-${TARGET_ARCH}->linux-libc-headers \
46"
47