mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
* add new packagegroup-core-x11-server to SIGGEN_EXCLUDERECIPES_ABISAFE, so that recipes depending on it are not rebuilt after every machine swtich * allows to remove task-x11-server and task-x11 from meta-oe without loosing any functionality * be carefull with default XSERVER value which does not have xf86-input-mouse and xf86-input-keyboard) * VIRTUAL-RUNTIME_xserver_common which defaults to x11-common in oe-core and xserver-common in meta-oe's task-x11 (From OE-Core rev: a398c96706c119f298f57a929a317fcf8e0f5b92) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
740 B
Plaintext
29 lines
740 B
Plaintext
# 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}/../")}'
|
|
|
|
# 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 \
|
|
keymaps \
|
|
udev-extraconf \
|
|
packagegroup-x11-xserver \
|
|
"
|