]> code.ossystems Code Review - openembedded-core.git/commitdiff
uclibc: Return correct endianness for mips64
authorKhem Raj <raj.khem@gmail.com>
Wed, 2 May 2012 20:53:59 +0000 (13:53 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 6 May 2012 08:54:45 +0000 (09:54 +0100)
Regular expression did not check for mips64

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/uclibc/uclibc-config.inc

index 0e0c1885acbef4c9f789841a970a693499b8bb08..265626c38d0e0ffac7f58bf73c9e13e4ee0fba61 100644 (file)
@@ -75,7 +75,7 @@ def map_uclibc_endian(a, d):
        if re.match('^(avr32|e1|frv|(parisc|hppa)|m68k|microblaze|powerpc.*|(sparc|sun).*)$', a):
                return 'BIG'
        # Possibly BE
-       elif re.match('^(((arm|sa110).*eb)|h8300.*eb|(parisc|hppa).*eb|mips|sh.*eb|xtensa.*eb)$', a):
+       elif re.match('^(((arm|sa110).*eb)|h8300.*eb|(parisc|hppa).*eb|mips|mips64|sh.*eb|xtensa.*eb)$', a):
                return 'BIG'
        return 'LITTLE'