diff options
author | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-02-19 13:34:35 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-21 22:05:35 +0000 |
commit | 76c8fadec9fee77e7eaa7dcf5de2fb86dfcc6d9c (patch) | |
tree | eb1a275aa0f51ea31f1f154ee2e8aee9c8b66fdb | |
parent | 0a69248db774f169318fc5954c805f0a7e8803dc (diff) | |
download | poky-76c8fadec9fee77e7eaa7dcf5de2fb86dfcc6d9c.tar.gz |
Revert "kernel-arch.bbclass: add arm64 support to U-Boot architecture map"
This reverts commit 0b891265716c414ade29d587fc1a3c4ea7beadbe.
U-Boot does support AArch64, this however was only added to newer
versions of U-Boot and at the time of this original commit the U-Boot in
OE-Core did not support the 'arm64' architecture. OE-Core now has a
newer version of U-Boot for the mkimage recipe and thus supports the
'arm64' architecture.
(From OE-Core rev: fd8158134f3d7a7c795c818cc50eb2858a6cae06)
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/kernel-arch.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass index bbcfa15b84..6a6ad91866 100644 --- a/meta/classes/kernel-arch.bbclass +++ b/meta/classes/kernel-arch.bbclass | |||
@@ -40,7 +40,6 @@ def map_uboot_arch(a, d): | |||
40 | 40 | ||
41 | if re.match('p(pc|owerpc)(|64)', a): return 'ppc' | 41 | if re.match('p(pc|owerpc)(|64)', a): return 'ppc' |
42 | elif re.match('i.86$', a): return 'x86' | 42 | elif re.match('i.86$', a): return 'x86' |
43 | elif re.match('arm64$', a): return 'arm' | ||
44 | return a | 43 | return a |
45 | 44 | ||
46 | export UBOOT_ARCH = "${@map_uboot_arch(d.getVar('ARCH', True), d)}" | 45 | export UBOOT_ARCH = "${@map_uboot_arch(d.getVar('ARCH', True), d)}" |