From: Jamie Lenehan Date: Tue, 25 Jul 2006 03:20:54 +0000 (+0000) Subject: classes/kernel-arch.bbclass: Update the kernel arch selection so that X-Git-Tag: Release-2010-05/1~9453^2~1142 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f3fb2feff6111b09dc5081644fa5fa6d2b693b6;p=openembedded.git 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. --- 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)