From: Zubair Lutfullah Kakakhel Date: Tue, 4 Oct 2016 11:31:14 +0000 (+0100) Subject: kernel-arch.bbclass: Add mipsisa{32, 64}r6{el, } support X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~23929 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aecb57f2fd65a1bfbc2e9a23fba4984d44055c4c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git kernel-arch.bbclass: Add mipsisa{32, 64}r6{el, } support Add support for MIPS Release 6 ISA Signed-off-by: Zubair Lutfullah Kakakhel Signed-off-by: Richard Purdie --- diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass index 3ed5986a524..8a4bef1743b 100644 --- a/meta/classes/kernel-arch.bbclass +++ b/meta/classes/kernel-arch.bbclass @@ -25,7 +25,7 @@ def map_kernel_arch(a, d): elif re.match('armeb$', a): return 'arm' elif re.match('aarch64$', a): return 'arm64' elif re.match('aarch64_be$', a): return 'arm64' - elif re.match('mips(el|64|64el)$', a): return 'mips' + elif re.match('mips(isa|)(32|64|)(r6|)(el|)$', 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'