blob: 9773632256f0680bf6a8124088bb54b1b4f8db13 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# 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 = "6"
13
14BBLAYERS_LAYERINDEX_NAME_core = "openembedded-core"
15
16# Set a variable to get to the top of the metadata location
17COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}'
18
19# opkg-utils is for update-altnernatives :(
20SIGGEN_EXCLUDERECIPES_ABISAFE += " \
21 sysvinit-inittab \
22 shadow-securetty \
23 opkg-arch-config \
24 netbase \
25 init-ifupdown \
26 connman-conf \
27 formfactor \
28 xserver-xf86-config \
29 pointercal \
30 pointercal-xinput \
31 base-files \
32 keymaps \
33 udev-extraconf \
34 packagegroup-x11-xserver \
35 systemd-serialgetty \
36 initscripts \
37 shadow \
38 shadow-sysroot \
39 base-passwd \
40 opkg-utils \
41"
42
43SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
Patrick Williamsf1e5d692016-03-30 15:21:19 -050044 gcc-cross-${TARGET_ARCH}->virtual/libc \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050045 gcc-cross-${TARGET_ARCH}->linux-libc-headers \
46 ppp-dialin->ppp \
47 resolvconf->bash \
48 docbook-xsl-stylesheets->perl \
49 initramfs-framework->busybox \
50 initramfs-framework->systemd \
51 initramfs-framework->udev \
52 liberation-fonts->fontconfig \
53 gnome-icon-theme->librsvg \
54 font-alias->font-util \
55 weston-init->weston \
56 weston-init->kbd \
Patrick Williamsf1e5d692016-03-30 15:21:19 -050057 oprofile->virtual/kernel \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050058"
59