summaryrefslogtreecommitdiffstats
path: root/meta-yocto/conf
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-04-16 15:52:16 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-16 12:52:26 +0100
commite8ab6ab64b600c9ce550da88cff1868882c7f79d (patch)
tree6879329f714e606862146617c484ac4c76166089 /meta-yocto/conf
parente737d01095a122f483837a99274e932f47747bf7 (diff)
downloadpoky-e8ab6ab64b600c9ce550da88cff1868882c7f79d.tar.gz
meta-yocto: Move OELAYOUT_ABI definition to poky.conf
The ABI version definition should go along with the DISTRO variable since it impact the TMPDIR definition. Otherwise, if a user used to work with pure OE-Core, and then he/she added meta-yocto layer, it will report ABI version incompatibility issue. This is because ABI is changed to "8" by adding meta-yocto layer, however the DISTRO variable is not defined and TMPDIR is still "tmp-eglibc". Defining the OELAYOUT_ABI variable in poky.conf could fix this issue. This fixes [YOCTO #2303] Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto/conf')
-rw-r--r--meta-yocto/conf/abi_version.conf7
-rw-r--r--meta-yocto/conf/distro/poky.conf7
2 files changed, 7 insertions, 7 deletions
diff --git a/meta-yocto/conf/abi_version.conf b/meta-yocto/conf/abi_version.conf
deleted file mode 100644
index 83b668a2a2..0000000000
--- a/meta-yocto/conf/abi_version.conf
+++ /dev/null
@@ -1,7 +0,0 @@
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#
7OELAYOUT_ABI = "8"
diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
index e4d7c1de91..e51ccdf07d 100644
--- a/meta-yocto/conf/distro/poky.conf
+++ b/meta-yocto/conf/distro/poky.conf
@@ -67,3 +67,10 @@ CONNECTIVITY_CHECK_URIS ?= "git://git.yoctoproject.org/yocto-firewall-test;proto
67 67
68# Default hash policy for distro 68# Default hash policy for distro
69BB_SIGNATURE_HANDLER ?= 'OEBasicHash' 69BB_SIGNATURE_HANDLER ?= 'OEBasicHash'
70#
71# OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in
72# an incompatible way. Such changes should usually be detailed in the commit
73# that breaks the format and have been previously discussed on the mailing list
74# with general agreement from the core team.
75#
76OELAYOUT_ABI = "8"