mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
We already have versioning of the local.conf file but it's entirely plausible for the bblayers.conf and site.conf to change incompatibly so we should version those too. Signed-off-by: Joshua Lock <josh@linux.intel.com>
16 lines
311 B
Plaintext
16 lines
311 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 = "1.8.10"
|
|
|
|
SANITY_ABIFILE = "${TMPDIR}/abi_version"
|
|
|
|
POKY_CONF_VERSION = "1"
|
|
LAYER_CONF_VERSION = "1"
|
|
SITE_CONF_VERSION = "1"
|
|
|
|
INHERIT += "sanity"
|
|
|