]> code.ossystems Code Review - openembedded-core.git/commitdiff
Revert "kernel-arch.bbclass: add arm64 support to U-Boot architecture map"
authorNathan Rossi <nathan.rossi@xilinx.com>
Thu, 19 Feb 2015 03:34:35 +0000 (13:34 +1000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 21 Feb 2015 22:04:24 +0000 (22:04 +0000)
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.

Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/kernel-arch.bbclass

index bbcfa15b84aa15152fdf8889cf80ba9ed77b54c5..6a6ad9186698902cd1b53ee5e9564d8a4e3d2448 100644 (file)
@@ -40,7 +40,6 @@ def map_uboot_arch(a, d):
 
     if   re.match('p(pc|owerpc)(|64)', a): return 'ppc'
     elif re.match('i.86$', a): return 'x86'
-    elif re.match('arm64$', a): return 'arm'
     return a
 
 export UBOOT_ARCH = "${@map_uboot_arch(d.getVar('ARCH', True), d)}"