summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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):
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'
43 return a 44 return a
44 45
45export UBOOT_ARCH = "${@map_uboot_arch(d.getVar('ARCH', True), d)}" 46export UBOOT_ARCH = "${@map_uboot_arch(d.getVar('ARCH', True), d)}"