diff options
author | Graeme Gregory <dp@xora.org.uk> | 2009-09-17 23:51:41 +0100 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2009-09-17 23:51:41 +0100 |
commit | 4997a9ed43a5bd1ea3a4d3fc0fece59eaf714e47 (patch) | |
tree | 618761c1304bf2db036932899c1f1377ce00fd5c /conf/distro | |
parent | a2b8a408e9141091efc87e568641ed81f6767ce2 (diff) | |
parent | 698ae87ee44a2fa5bd427bf15052d17e43d6d311 (diff) |
Merge branch 'org.openembedded.dev' of git+ssh://git@git.openembedded.org/openembedded into org.openembedded.dev
Diffstat (limited to 'conf/distro')
-rw-r--r-- | conf/distro/include/angstrom-eglibc.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/conf/distro/include/angstrom-eglibc.inc b/conf/distro/include/angstrom-eglibc.inc index e947833453..2a1b7b059c 100644 --- a/conf/distro/include/angstrom-eglibc.inc +++ b/conf/distro/include/angstrom-eglibc.inc @@ -1,9 +1,10 @@ # eglibc: require conf/distro/include/eglibc.inc -TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1) in ['arm', 'armeb'] and bb.data.getVar('MACHINE',d) not in ['collie','h3600', 'h3800', 'simpad', 'htcwallaby']]}" +TARGET_OS = "linux" -TARGET_OS = "linux${@['','-gnuspe'][bb.data.getVar('TARGET_ARCH',d,1) in ['ppc', 'powerpc'] and bb.data.getVar('MACHINE',d) in ['calamari']]}" +TARGET_OS .= "${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1) in ['arm', 'armeb'] and bb.data.getVar('MACHINE',d) not in ['collie','h3600', 'h3800', 'simpad', 'htcwallaby']]}" +TARGET_OS .= "${@['','-gnuspe'][bb.data.getVar('TARGET_ARCH',d,1) in ['ppc', 'powerpc'] and bb.data.getVar('MACHINE',d) in ['calamari']]}" #TARGET_OS = "linux-gnuspe" |