mirror of
https://git.yoctoproject.org/poky
synced 2026-04-19 06:32:13 +02:00
Add some extra hash equivalence runqueue tests based on recent scenarios that caused problems during testing. (Bitbake rev: 373b085ead992a725b2230ededd992b4c61a1a05) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
572 B
Plaintext
17 lines
572 B
Plaintext
CACHE = "${TOPDIR}/cache"
|
|
THISDIR = "${@os.path.dirname(d.getVar('FILE'))}"
|
|
COREBASE := "${@os.path.normpath(os.path.dirname(d.getVar('FILE')+'/../../'))}"
|
|
BBFILES = "${COREBASE}/recipes/*.bb"
|
|
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"
|
|
|
|
include conf/multiconfig/${BB_CURRENT_MC}.conf
|