blob: 4ba0b9378e087c9f12c933b8e89cb9e083219e62 [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
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012LAYERVERSION_core = "11"
13
14LAYERSERIES_CORENAMES = "rocko"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015
16BBLAYERS_LAYERINDEX_NAME_core = "openembedded-core"
17
18# Set a variable to get to the top of the metadata location
19COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}'
20
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050021# opkg-utils is for update-alternatives :(
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022SIGGEN_EXCLUDERECIPES_ABISAFE += " \
23 sysvinit-inittab \
24 shadow-securetty \
25 opkg-arch-config \
26 netbase \
27 init-ifupdown \
28 connman-conf \
29 formfactor \
30 xserver-xf86-config \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050031 pointercal-xinput \
32 base-files \
33 keymaps \
34 udev-extraconf \
35 packagegroup-x11-xserver \
36 systemd-serialgetty \
37 initscripts \
38 shadow \
39 shadow-sysroot \
40 base-passwd \
41 opkg-utils \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050042 gstreamer1.0-meta-base \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050043 ca-certificates \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050044"
45
46SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050047 gcc-cross-${TARGET_ARCH}->virtual/${TARGET_PREFIX}libc-for-gcc \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048 gcc-cross-${TARGET_ARCH}->linux-libc-headers \
49 ppp-dialin->ppp \
50 resolvconf->bash \
51 docbook-xsl-stylesheets->perl \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060052 ca-certificates->openssl \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050053 initramfs-framework->${VIRTUAL-RUNTIME_base-utils} \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050054 initramfs-framework->eudev \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050055 initramfs-framework->systemd \
56 initramfs-module-install-efi->dosfstools \
57 initramfs-module-install-efi->e2fsprogs \
58 initramfs-module-install-efi->parted \
59 initramfs-module-install-efi->util-linux \
60 initramfs-module-install->e2fsprogs \
61 initramfs-module-install->grub \
62 initramfs-module-install->parted \
63 initramfs-module-install->util-linux \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050064 liberation-fonts->fontconfig \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050065 cantarell-fonts->fontconfig \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050066 gnome-icon-theme->librsvg \
67 font-alias->font-util \
68 weston-init->weston \
69 weston-init->kbd \
Patrick Williamsf1e5d692016-03-30 15:21:19 -050070 oprofile->virtual/kernel \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050071"
72
Brad Bishop6e60e8b2018-02-01 10:27:11 -050073# We need to keep bitbake tools in PATH
74PATH := "${@os.path.dirname(bb.utils.which(d.getVar('PATH'),'bitbake'))}:${HOSTTOOLS_DIR}"