[oe-commits] [openembedded-core] 13/24: linuxloader.bbclass: Adjust mips to cover all mips/mips64

git at git.openembedded.org git at git.openembedded.org
Fri Oct 7 15:44:56 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit b90d68fda3d14b4d19b7ffcb5b80ed28563a616d
Author: Mark Hatle <mark.hatle at windriver.com>
AuthorDate: Thu Oct 6 11:59:38 2016 -0500

    linuxloader.bbclass: Adjust mips to cover all mips/mips64
    
    [YOCTO #10389]
    
    Use a glob (*) to match all mips (not previously matched).  This will ensure
    that the linuxloader is properly returned for mips, mipsel, mips64,
    mips64el and their n32 variants.
    
    See: https://sourceware.org/glibc/wiki/ABIList#mips for the official list
    of loaders.
    
    Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/linuxloader.bbclass | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/classes/linuxloader.bbclass b/meta/classes/linuxloader.bbclass
index 8d85e6e..117b030 100644
--- a/meta/classes/linuxloader.bbclass
+++ b/meta/classes/linuxloader.bbclass
@@ -1,12 +1,15 @@
 
 linuxloader () {
 	case ${TARGET_ARCH} in
-		powerpc | mips | mipsel | microblaze )
+		powerpc | microblaze )
 			dynamic_loader="${base_libdir}/ld.so.1"
 			;;
 		mipsisa32r6el | mipsisa32r6 | mipsisa64r6el | mipsisa64r6)
 			dynamic_loader="${base_libdir}/ld-linux-mipsn8.so.1"
 			;;
+		mips* )
+			dynamic_loader="${base_libdir}/ld.so.1"
+			;;
 		powerpc64)
 			dynamic_loader="${base_libdir}/ld64.so.1"
 			;;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list