aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel-arch.bbclass
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2014-03-20 19:49:35 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-21 12:05:32 +0000
commit0b891265716c414ade29d587fc1a3c4ea7beadbe (patch)
treec899e225950ac0337320d737fcf1f36b91bf9609 /meta/classes/kernel-arch.bbclass
parentd302f5683dd736ac4cd4b601a046d22000d41e68 (diff)
downloadopenembedded-core-contrib-0b891265716c414ade29d587fc1a3c4ea7beadbe.tar.gz
kernel-arch.bbclass: add arm64 support to U-Boot architecture map
to define UBOOT_ARCH, we map kernel architectures to U-Boot architectures. In the case of arm64 kernel, we should map to arm U-boot architecture. This patch add the exception rule to the map_uboot_arch function. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel-arch.bbclass')
-rw-r--r--meta/classes/kernel-arch.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass
index 6a6ad91866..bbcfa15b84 100644
--- a/meta/classes/kernel-arch.bbclass
+++ b/meta/classes/kernel-arch.bbclass
@@ -40,6 +40,7 @@ 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)}"