Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # We have a conf and classes directory, add to BBPATH |
| 2 | BBPATH .= ":${LAYERDIR}" |
| 3 | # We have recipes-* directories, add to BBFILES |
| 4 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb" |
| 5 | |
| 6 | BBFILE_COLLECTIONS += "core" |
| 7 | BBFILE_PATTERN_core = "^${LAYERDIR}/" |
| 8 | BBFILE_PRIORITY_core = "5" |
| 9 | |
| 10 | # This should only be incremented on significant changes that will |
| 11 | # cause compatibility issues with other layers |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 12 | LAYERVERSION_core = "11" |
| 13 | |
| 14 | LAYERSERIES_CORENAMES = "rocko" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 15 | |
| 16 | BBLAYERS_LAYERINDEX_NAME_core = "openembedded-core" |
| 17 | |
| 18 | # Set a variable to get to the top of the metadata location |
| 19 | COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}' |
| 20 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 21 | # opkg-utils is for update-alternatives :( |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 22 | SIGGEN_EXCLUDERECIPES_ABISAFE += " \ |
| 23 | sysvinit-inittab \ |
Brad Bishop | 0011132 | 2018-04-01 22:23:53 -0400 | [diff] [blame] | 24 | busybox-inittab \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 25 | shadow-securetty \ |
| 26 | opkg-arch-config \ |
| 27 | netbase \ |
| 28 | init-ifupdown \ |
| 29 | connman-conf \ |
| 30 | formfactor \ |
| 31 | xserver-xf86-config \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 32 | pointercal-xinput \ |
| 33 | base-files \ |
| 34 | keymaps \ |
| 35 | udev-extraconf \ |
| 36 | packagegroup-x11-xserver \ |
| 37 | systemd-serialgetty \ |
| 38 | initscripts \ |
| 39 | shadow \ |
| 40 | shadow-sysroot \ |
| 41 | base-passwd \ |
| 42 | opkg-utils \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 43 | gstreamer1.0-meta-base \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 44 | ca-certificates \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 45 | " |
| 46 | |
| 47 | SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 48 | gcc-cross-${TARGET_ARCH}->virtual/${TARGET_PREFIX}libc-for-gcc \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 49 | gcc-cross-${TARGET_ARCH}->linux-libc-headers \ |
| 50 | ppp-dialin->ppp \ |
| 51 | resolvconf->bash \ |
| 52 | docbook-xsl-stylesheets->perl \ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 53 | ca-certificates->openssl \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 54 | initramfs-framework->${VIRTUAL-RUNTIME_base-utils} \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 55 | initramfs-framework->eudev \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 56 | initramfs-framework->systemd \ |
| 57 | initramfs-module-install-efi->dosfstools \ |
| 58 | initramfs-module-install-efi->e2fsprogs \ |
| 59 | initramfs-module-install-efi->parted \ |
| 60 | initramfs-module-install-efi->util-linux \ |
| 61 | initramfs-module-install->e2fsprogs \ |
| 62 | initramfs-module-install->grub \ |
| 63 | initramfs-module-install->parted \ |
| 64 | initramfs-module-install->util-linux \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 65 | liberation-fonts->fontconfig \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 66 | cantarell-fonts->fontconfig \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 67 | gnome-icon-theme->librsvg \ |
| 68 | font-alias->font-util \ |
| 69 | weston-init->weston \ |
| 70 | weston-init->kbd \ |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 71 | oprofile->virtual/kernel \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 72 | " |
| 73 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 74 | # We need to keep bitbake tools in PATH |
| 75 | PATH := "${@os.path.dirname(bb.utils.which(d.getVar('PATH'),'bitbake'))}:${HOSTTOOLS_DIR}" |