mirror of
https://git.yoctoproject.org/poky
synced 2026-07-03 23:47:21 +00:00
f82e18eee1
Needed for multiprocessing module in bb used in the next commit. It was added to bitbake in 62be9113d98fccb347c6aa0a10d5c4ee2857f8b6 which was backported to 2.8 branch and tagged as 2.8.1 (From OE-Core rev: 95888aa944847cf6dbfac501997a3e2980344b66) Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
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.8.1"
|
|
|
|
SANITY_ABIFILE = "${TMPDIR}/abi_version"
|
|
|
|
SANITY_VERSION ?= "1"
|
|
LOCALCONF_VERSION ?= "2"
|
|
LAYER_CONF_VERSION ?= "7"
|
|
SITE_CONF_VERSION ?= "1"
|
|
|
|
INHERIT += "sanity"
|
|
|