summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel-arch.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/kernel-arch.bbclass')
-rw-r--r--meta/classes/kernel-arch.bbclass58
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass
new file mode 100644
index 0000000000..4a140ebdaf
--- /dev/null
+++ b/meta/classes/kernel-arch.bbclass
@@ -0,0 +1,58 @@
1#
2# set the ARCH environment variable for kernel compilation (including
3# modules). return value must match one of the architecture directories
4# in the kernel source "arch" directory
5#
6
7valid_archs = "alpha cris ia64 \
8 i386 x86 \
9 m68knommu m68k ppc powerpc powerpc64 ppc64 \
10 sparc sparc64 \
11 arm aarch64 \
12 m32r mips \
13 sh sh64 um h8300 \
14 parisc s390 v850 \
15 avr32 blackfin \
16 microblaze"
17
18def map_kernel_arch(a, d):
19 import re
20
21 valid_archs = d.getVar('valid_archs', True).split()
22
23 if re.match('(i.86|athlon|x86.64)$', a): return 'x86'
24 elif re.match('armeb$', a): return 'arm'
25 elif re.match('aarch64$', a): return 'arm64'
26 elif re.match('mips(el|64|64el)$', a): return 'mips'
27 elif re.match('p(pc|owerpc)(|64)', a): return 'powerpc'
28 elif re.match('sh(3|4)$', a): return 'sh'
29 elif re.match('bfin', a): return 'blackfin'
30 elif re.match('microblazeel', a): return 'microblaze'
31 elif a in valid_archs: return a
32 else:
33 bb.error("cannot map '%s' to a linux kernel architecture" % a)
34
35export ARCH = "${@map_kernel_arch(d.getVar('TARGET_ARCH', True), d)}"
36
37def map_uboot_arch(a, d):
38 import re
39
40 if re.match('p(pc|owerpc)(|64)', a): return 'ppc'
41 elif re.match('i.86$', a): return 'x86'
42 return a
43
44export UBOOT_ARCH = "${@map_uboot_arch(d.getVar('ARCH', True), d)}"
45
46# Set TARGET_??_KERNEL_ARCH in the machine .conf to set architecture
47# specific options necessary for building the kernel and modules.
48TARGET_CC_KERNEL_ARCH ?= ""
49HOST_CC_KERNEL_ARCH ?= "${TARGET_CC_KERNEL_ARCH}"
50TARGET_LD_KERNEL_ARCH ?= ""
51HOST_LD_KERNEL_ARCH ?= "${TARGET_LD_KERNEL_ARCH}"
52TARGET_AR_KERNEL_ARCH ?= ""
53HOST_AR_KERNEL_ARCH ?= "${TARGET_AR_KERNEL_ARCH}"
54
55KERNEL_CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_KERNEL_ARCH}"
56KERNEL_LD = "${CCACHE}${HOST_PREFIX}ld.bfd ${HOST_LD_KERNEL_ARCH}"
57KERNEL_AR = "${CCACHE}${HOST_PREFIX}ar ${HOST_AR_KERNEL_ARCH}"
58