diff options
author | Joe Slater <jslater@windriver.com> | 2014-12-18 16:50:59 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-23 10:18:17 +0000 |
commit | 263738561564b1fa6dbb2f80eeba462680584173 (patch) | |
tree | 63af814f940c5fcc6ba7504cdb9cb0fc5f8ce9fe /meta/classes/siteinfo.bbclass | |
parent | 8781b4952da9f618103a4c609efa5d694b7f195f (diff) | |
download | poky-263738561564b1fa6dbb2f80eeba462680584173.tar.gz |
siteinfo: account for 32 and 64 bit arm
Pull wordsize related items from arm-common and put in
arm-32. Leave them as they were. Copy arm-32 to arm-64
and comment out all variables. Re-define to correct
values leaving items which do not appear to be used
undefined.
(From OE-Core rev: 99d43a1554b2daeb7aba3c4582ccec758e6ec4a5)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/siteinfo.bbclass')
-rw-r--r-- | meta/classes/siteinfo.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass index e90632aeef..b41db46bc0 100644 --- a/meta/classes/siteinfo.bbclass +++ b/meta/classes/siteinfo.bbclass | |||
@@ -18,10 +18,10 @@ | |||
18 | def siteinfo_data(d): | 18 | def siteinfo_data(d): |
19 | archinfo = { | 19 | archinfo = { |
20 | "allarch": "endian-little bit-32", # bogus, but better than special-casing the checks below for allarch | 20 | "allarch": "endian-little bit-32", # bogus, but better than special-casing the checks below for allarch |
21 | "aarch64": "endian-little bit-64 arm-common", | 21 | "aarch64": "endian-little bit-64 arm-common arm-64", |
22 | "aarch64_be": "endian-big bit-64 arm-common", | 22 | "aarch64_be": "endian-big bit-64 arm-common arm-64", |
23 | "arm": "endian-little bit-32 arm-common", | 23 | "arm": "endian-little bit-32 arm-common arm-32", |
24 | "armeb": "endian-big bit-32 arm-common", | 24 | "armeb": "endian-big bit-32 arm-common arm-32", |
25 | "avr32": "endian-big bit-32 avr32-common", | 25 | "avr32": "endian-big bit-32 avr32-common", |
26 | "bfin": "endian-little bit-32 bfin-common", | 26 | "bfin": "endian-little bit-32 bfin-common", |
27 | "i386": "endian-little bit-32 ix86-common", | 27 | "i386": "endian-little bit-32 ix86-common", |