From: Khem Raj Date: Wed, 2 May 2012 20:53:59 +0000 (-0700) Subject: uclibc: Return correct endianness for mips64 X-Git-Tag: 2015-4~10732 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=945b817d381bdb68202982536daaaaff78ad5761;p=openembedded-core.git uclibc: Return correct endianness for mips64 Regular expression did not check for mips64 Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/uclibc/uclibc-config.inc b/meta/recipes-core/uclibc/uclibc-config.inc index 0e0c1885ac..265626c38d 100644 --- a/meta/recipes-core/uclibc/uclibc-config.inc +++ b/meta/recipes-core/uclibc/uclibc-config.inc @@ -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'