mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
We now need the new bitbake setVarFilter function. There was also some changes to bb.event.check_for_interrupts() which changed in an incompatible way. (From OE-Core rev: 9840877cb7dc9c57c65a2b2740121a8c56b9985b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
336 B
Plaintext
17 lines
336 B
Plaintext
# Sanity checks for common user misconfigurations
|
|
#
|
|
# See sanity.bbclass
|
|
#
|
|
# Expert users can confirm their sanity with "touch conf/sanity.conf"
|
|
BB_MIN_VERSION = "2.15.2"
|
|
|
|
SANITY_ABIFILE = "${TMPDIR}/abi_version"
|
|
|
|
SANITY_VERSION ?= "1"
|
|
LOCALCONF_VERSION ?= "2"
|
|
LAYER_CONF_VERSION ?= "7"
|
|
SITE_CONF_VERSION ?= "1"
|
|
|
|
INHERIT += "sanity"
|
|
|