mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 01:36:38 +01:00
Adds a test to validate that multiconfigs can independently mask off recipes by setting BBMASK. See the test description for further information about how the test works. (Bitbake rev: 513fc2dddf13d5e344162c26d89d2dde2fe85634) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
614 B
Plaintext
18 lines
614 B
Plaintext
CACHE = "${TOPDIR}/cache"
|
|
THISDIR = "${@os.path.dirname(d.getVar('FILE'))}"
|
|
COREBASE := "${@os.path.normpath(os.path.dirname(d.getVar('FILE')+'/../../'))}"
|
|
EXTRA_BBFILES ?= ""
|
|
BBFILES = "${COREBASE}/recipes/*.bb ${EXTRA_BBFILES}"
|
|
PROVIDES = "${PN}"
|
|
PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0]}"
|
|
PF = "${BB_CURRENT_MC}:${PN}"
|
|
export PATH
|
|
TMPDIR ??= "${TOPDIR}"
|
|
STAMP = "${TMPDIR}/stamps/${PN}"
|
|
T = "${TMPDIR}/workdir/${PN}/temp"
|
|
BB_NUMBER_THREADS = "4"
|
|
|
|
BB_HASHBASE_WHITELIST = "BB_CURRENT_MC BB_HASHSERVE TMPDIR TOPDIR SLOWTASKS SSTATEVALID FILE"
|
|
|
|
include conf/multiconfig/${BB_CURRENT_MC}.conf
|