diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-05-02 13:53:59 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-06 09:55:46 +0100 |
commit | 722d74ebb5421bbcb5acc70b081d85ff823e50d1 (patch) | |
tree | c20314bec4fbe8f2f91a04765b221497e3a6eb1a /meta/recipes-core/uclibc | |
parent | 23d149856d6e117cc6308a5beb5c843fcac79842 (diff) | |
download | poky-722d74ebb5421bbcb5acc70b081d85ff823e50d1.tar.gz |
uclibc: Return correct endianness for mips64
Regular expression did not check for mips64
(From OE-Core rev: 945b817d381bdb68202982536daaaaff78ad5761)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/uclibc')
-rw-r--r-- | meta/recipes-core/uclibc/uclibc-config.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
75 | if re.match('^(avr32|e1|frv|(parisc|hppa)|m68k|microblaze|powerpc.*|(sparc|sun).*)$', a): | 75 | if re.match('^(avr32|e1|frv|(parisc|hppa)|m68k|microblaze|powerpc.*|(sparc|sun).*)$', a): |
76 | return 'BIG' | 76 | return 'BIG' |
77 | # Possibly BE | 77 | # Possibly BE |
78 | elif re.match('^(((arm|sa110).*eb)|h8300.*eb|(parisc|hppa).*eb|mips|sh.*eb|xtensa.*eb)$', a): | 78 | elif re.match('^(((arm|sa110).*eb)|h8300.*eb|(parisc|hppa).*eb|mips|mips64|sh.*eb|xtensa.*eb)$', a): |
79 | return 'BIG' | 79 | return 'BIG' |
80 | return 'LITTLE' | 80 | return 'LITTLE' |
81 | 81 | ||