From 7f3fb2feff6111b09dc5081644fa5fa6d2b693b6 Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Tue, 25 Jul 2006 03:20:54 +0000 Subject: classes/kernel-arch.bbclass: Update the kernel arch selection so that sh3 and sh4 use the sh architecture. Without this building add on kernel modules (madwifi-ng for example) for sh3 or sh4 fails due to the inability to determine the kernel arch to use. --- classes/kernel-arch.bbclass | 1 + 1 file changed, 1 insertion(+) (limited to 'classes') diff --git a/classes/kernel-arch.bbclass b/classes/kernel-arch.bbclass index 92a6c982fb..b331d25614 100644 --- a/classes/kernel-arch.bbclass +++ b/classes/kernel-arch.bbclass @@ -19,6 +19,7 @@ def map_kernel_arch(a, d): elif re.match('armeb$', a): return 'arm' elif re.match('powerpc$', a): return 'ppc' elif re.match('mipsel$', a): return 'mips' + elif re.match('sh(3|4)$', a): return 'sh' elif a in valid_archs: return a else: bb.error("cannot map '%s' to a linux kernel architecture" % a) -- cgit v1.2.3