]> code.ossystems Code Review - openembedded-core.git/commitdiff
Move SANITY_ABI to its own file and give a more general name
authorRichard Purdie <richard@openedhand.com>
Thu, 24 Jul 2008 11:10:33 +0000 (11:10 +0000)
committerRichard Purdie <richard@openedhand.com>
Thu, 24 Jul 2008 11:10:33 +0000 (11:10 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4938 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/sanity.bbclass
meta/conf/abi_version.conf [new file with mode: 0644]
meta/conf/bitbake.conf
meta/conf/sanity.conf

index 2de023f9625391de3cde01bff845bcdb71271b94..0193a735288b81914254c57635374c5a01e3c4d2 100644 (file)
@@ -141,7 +141,7 @@ def check_sanity(e):
        #
        # Check the 'ABI' of TMPDIR
        #
-       current_abi = data.getVar('SANITY_ABI', e.data, True)
+       current_abi = data.getVar('OELAYOUT_ABI', e.data, True)
        abifile = data.getVar('SANITY_ABIFILE', e.data, True)
        if os.path.exists(abifile):
                f = file(abifile, "r")
diff --git a/meta/conf/abi_version.conf b/meta/conf/abi_version.conf
new file mode 100644 (file)
index 0000000..a670425
--- /dev/null
@@ -0,0 +1,7 @@
+#
+# OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in 
+# an incompatible way. Such changes should usually be detailed in the commit
+# that breaks the format and have been previously discussed on the mailing list 
+# with general agreement from the core team.
+#
+OELAYOUT_ABI = "2"
index bf74c998bba278b132bd383b138cd32c4d20ad3a..8d596ca31edb272b52d03ac371e043b0ad9dfa58 100644 (file)
@@ -576,6 +576,7 @@ include conf/machine/${MACHINE}.conf
 include conf/distro/${DISTRO}.conf
 include conf/documentation.conf
 require conf/sanity.conf
+require conf/abi_version.conf
 
 ##################################################################
 # Weak variables (usually to retain backwards compatibility)
index e5fe74894d0d2ee6237cace493dd6f07a0875a1a..7cc348ec94e420d72dbeb9e15a0579dbc331b810 100644 (file)
@@ -5,13 +5,6 @@
 # Expert users can confirm their sanity with "touch conf/sanity.conf"
 BB_MIN_VERSION = "1.8.10"
 
-#
-# SANITY_ABI allows us to notify users when the format of TMPDIR changes in 
-# an incompatible way. Such changes should usually be detailed in the commit
-# that breaks the format and have been previously discussed on the mailing list 
-# with general agreement from the core team.
-#
-SANITY_ABI = "2"
 SANITY_ABIFILE = "${TMPDIR}/abi_version"
 
 INHERIT += "sanity"