summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeon Woestenberg <leon@sidebranch.com>2011-05-11 12:11:07 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-11 16:41:51 +0100
commit37f431985055a6a2ab7ac753c188057abfaa4fc5 (patch)
tree9626c2e3b461f1c78d8f9814f30df1ff2411762f
parent0813e05acd62728059a37ccf9754ca64bac083b8 (diff)
downloadpoky-37f431985055a6a2ab7ac753c188057abfaa4fc5.tar.gz
siteinfo.bbclass: Add powerpc-linux-gnuspe.
Re-add powerpc-linux-gnuspe, from OpenEmbedded. Also adds support to poky.conf so that minimal-core-image builds with DISTRO=poky, [RP: Synced with recent diso file reoorg] (From OE-Core rev: 701a725d118c1a2edd1e54798d85e864b45e19a2) Signed-off-by: Leon Woestenberg <leon@sidebranch.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/siteinfo.bbclass1
-rw-r--r--meta/conf/distro/include/tclibc-eglibc.inc1
-rw-r--r--meta/conf/distro/include/tclibc-glibc.inc1
3 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass
index 436bc39f42..0b59e578fc 100644
--- a/meta/classes/siteinfo.bbclass
+++ b/meta/classes/siteinfo.bbclass
@@ -48,6 +48,7 @@ def get_siteinfo_list(d):
48 "powerpc-darwin": "endian-big bit-32 common-darwin",\ 48 "powerpc-darwin": "endian-big bit-32 common-darwin",\
49 "ppc-linux": "endian-big bit-32 common-glibc powerpc-common",\ 49 "ppc-linux": "endian-big bit-32 common-glibc powerpc-common",\
50 "powerpc-linux": "endian-big bit-32 common-glibc powerpc-common",\ 50 "powerpc-linux": "endian-big bit-32 common-glibc powerpc-common",\
51 "powerpc-linux-gnuspe": "endian-big bit-32 common-glibc powerpc-common",\
51 "powerpc-linux-uclibc": "endian-big bit-32 common-uclibc powerpc-common",\ 52 "powerpc-linux-uclibc": "endian-big bit-32 common-uclibc powerpc-common",\
52 "sh3-linux": "endian-little bit-32 common-glibc sh-common",\ 53 "sh3-linux": "endian-little bit-32 common-glibc sh-common",\
53 "sh4-linux": "endian-little bit-32 common-glibc sh-common",\ 54 "sh4-linux": "endian-little bit-32 common-glibc sh-common",\
diff --git a/meta/conf/distro/include/tclibc-eglibc.inc b/meta/conf/distro/include/tclibc-eglibc.inc
index 16625e3bf0..b65e58e007 100644
--- a/meta/conf/distro/include/tclibc-eglibc.inc
+++ b/meta/conf/distro/include/tclibc-eglibc.inc
@@ -5,6 +5,7 @@
5TARGET_OS = "linux" 5TARGET_OS = "linux"
6TARGET_OS_arm = "linux-gnueabi" 6TARGET_OS_arm = "linux-gnueabi"
7TARGET_OS_armeb = "linux-gnueabi" 7TARGET_OS_armeb = "linux-gnueabi"
8TARGET_OS_powerpc = "linux${@['','-gnuspe'][bb.data.getVar('BASE_PACKAGE_ARCH',d,1) in ['ppce500', 'ppce500v2']]}"
8 9
9# Add glibc overrides to the overrides for eglibc. 10# Add glibc overrides to the overrides for eglibc.
10OVERRIDES .= ":libc-glibc" 11OVERRIDES .= ":libc-glibc"
diff --git a/meta/conf/distro/include/tclibc-glibc.inc b/meta/conf/distro/include/tclibc-glibc.inc
index 79da9860e8..75934a034f 100644
--- a/meta/conf/distro/include/tclibc-glibc.inc
+++ b/meta/conf/distro/include/tclibc-glibc.inc
@@ -5,6 +5,7 @@
5TARGET_OS = "linux" 5TARGET_OS = "linux"
6TARGET_OS_arm = "linux-gnueabi" 6TARGET_OS_arm = "linux-gnueabi"
7TARGET_OS_armeb = "linux-gnueabi" 7TARGET_OS_armeb = "linux-gnueabi"
8TARGET_OS_powerpc = "linux${@['','-gnuspe'][bb.data.getVar('BASE_PACKAGE_ARCH',d,1) in ['ppce500', 'ppce500v2']]}"
8 9
9# Add glibc to the overrides. 10# Add glibc to the overrides.
10OVERRIDES =. "libc-glibc:" 11OVERRIDES =. "libc-glibc:"