]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
kernel-arch.bbclass: Map mips64{el} to mips KARCH
authorKhem Raj <raj.khem@gmail.com>
Wed, 25 Apr 2012 22:37:52 +0000 (15:37 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 21 May 2012 08:59:02 +0000 (09:59 +0100)
(From OE-Core rev: 22ce249a814f750bc47ead9ce281fcbd63c775c8)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/kernel-arch.bbclass

index d37c1fb2edf324c16d5409ad248c7a7e682078ea..e1864223efadea1d335743cfb6d3414bddfff2db 100644 (file)
@@ -23,7 +23,7 @@ def map_kernel_arch(a, d):
        if   re.match('(i.86|athlon|x86.64)$', a):      return 'x86'
        elif re.match('arm26$', a):                     return 'arm26'
        elif re.match('armeb$', a):                     return 'arm'
-       elif re.match('mipsel$', a):                    return 'mips'
+       elif re.match('mips(el|64|64el)$', a):          return 'mips'
        elif re.match('p(pc|owerpc)(|64)', a):          return 'powerpc'
        elif re.match('sh(3|4)$', a):                   return 'sh'
        elif re.match('bfin', a):                       return 'blackfin'