mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 10:59:41 +01:00
its desireable for other layers to be able to append to the list of packages with 'safe ABI's which are excluded from the sstate signatures. I can't emphasise enough how careful you need to be with this list, anything excluded here needs to be things which don't change interface and are consistent between different machines. (From OE-Core rev: 5adef35691a956c3071c0a1ed1caf6b58d1ec5a1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
716 B
Plaintext
22 lines
716 B
Plaintext
BBPATH ?= ""
|
|
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
# We have a packages directory, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb"
|
|
|
|
BBFILE_COLLECTIONS += "normal"
|
|
BBFILE_PATTERN_normal := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_normal = "5"
|
|
|
|
# Set a variable to get to the top of the metadata location
|
|
COREBASE := ${@os.path.normpath("${LAYERDIR}/../")}
|
|
|
|
# Add scripts to PATH
|
|
PATH := "${PATH}:${COREBASE}/scripts"
|
|
|
|
# Set path to qemu image tests included in this layer
|
|
|
|
QEMUIMAGETESTS := "${COREBASE}/scripts/qemuimage-tests"
|
|
|
|
SIGGEN_EXCLUDERECIPES_ABISAFE = "sysvinit-inittab shadow-securetty opkg-config-base netbase formfactor xserver-xf86-config pointercal base-files"
|