diff options
author | Richard Purdie <richard@openedhand.com> | 2008-07-24 11:10:33 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-07-24 11:10:33 +0000 |
commit | 8beb43ca485fb9b408f9445d9185a2ba89d1a154 (patch) | |
tree | 2f222f89a3e321c8233d5f2b50f8abacdcbca2e1 /meta/conf | |
parent | 09d8aa054f6a854f5c394a787e1c8196303660e3 (diff) | |
download | poky-8beb43ca485fb9b408f9445d9185a2ba89d1a154.tar.gz |
Move SANITY_ABI to its own file and give a more general name
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4938 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/abi_version.conf | 7 | ||||
-rw-r--r-- | meta/conf/bitbake.conf | 1 | ||||
-rw-r--r-- | meta/conf/sanity.conf | 7 |
3 files changed, 8 insertions, 7 deletions
diff --git a/meta/conf/abi_version.conf b/meta/conf/abi_version.conf new file mode 100644 index 0000000000..a6704254d4 --- /dev/null +++ b/meta/conf/abi_version.conf | |||
@@ -0,0 +1,7 @@ | |||
1 | # | ||
2 | # OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in | ||
3 | # an incompatible way. Such changes should usually be detailed in the commit | ||
4 | # that breaks the format and have been previously discussed on the mailing list | ||
5 | # with general agreement from the core team. | ||
6 | # | ||
7 | OELAYOUT_ABI = "2" | ||
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index bf74c998bb..8d596ca31e 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -576,6 +576,7 @@ include conf/machine/${MACHINE}.conf | |||
576 | include conf/distro/${DISTRO}.conf | 576 | include conf/distro/${DISTRO}.conf |
577 | include conf/documentation.conf | 577 | include conf/documentation.conf |
578 | require conf/sanity.conf | 578 | require conf/sanity.conf |
579 | require conf/abi_version.conf | ||
579 | 580 | ||
580 | ################################################################## | 581 | ################################################################## |
581 | # Weak variables (usually to retain backwards compatibility) | 582 | # Weak variables (usually to retain backwards compatibility) |
diff --git a/meta/conf/sanity.conf b/meta/conf/sanity.conf index e5fe74894d..7cc348ec94 100644 --- a/meta/conf/sanity.conf +++ b/meta/conf/sanity.conf | |||
@@ -5,13 +5,6 @@ | |||
5 | # Expert users can confirm their sanity with "touch conf/sanity.conf" | 5 | # Expert users can confirm their sanity with "touch conf/sanity.conf" |
6 | BB_MIN_VERSION = "1.8.10" | 6 | BB_MIN_VERSION = "1.8.10" |
7 | 7 | ||
8 | # | ||
9 | # SANITY_ABI allows us to notify users when the format of TMPDIR changes in | ||
10 | # an incompatible way. Such changes should usually be detailed in the commit | ||
11 | # that breaks the format and have been previously discussed on the mailing list | ||
12 | # with general agreement from the core team. | ||
13 | # | ||
14 | SANITY_ABI = "2" | ||
15 | SANITY_ABIFILE = "${TMPDIR}/abi_version" | 8 | SANITY_ABIFILE = "${TMPDIR}/abi_version" |
16 | 9 | ||
17 | INHERIT += "sanity" | 10 | INHERIT += "sanity" |