mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 11:43:04 +01:00
Add in the new 'check' calls which mean that the code can exit from longer running code loops if requested by the user. This covers sstate checks and sstate manifest cleanup code which currently couldn't be interrupted by the user from the UI. Increase the minimum bitbake version which brings in this API. (From OE-Core rev: cb6c50689175668b66ffbe09ff8f250ba9a9034b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
335 B
Plaintext
17 lines
335 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.3.1"
|
|
|
|
SANITY_ABIFILE = "${TMPDIR}/abi_version"
|
|
|
|
SANITY_VERSION ?= "1"
|
|
LOCALCONF_VERSION ?= "2"
|
|
LAYER_CONF_VERSION ?= "7"
|
|
SITE_CONF_VERSION ?= "1"
|
|
|
|
INHERIT += "sanity"
|
|
|