]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
openssl: Add support for many MIPS configurations
authorZubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Fri, 16 Dec 2016 15:14:19 +0000 (15:14 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 18 May 2017 12:04:44 +0000 (13:04 +0100)
Add more case statements to catch MIPS tune configurations

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
(cherry picked from commit cd1f6fbf9a2113cf510c25de2eb3895468e79149)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
meta/recipes-connectivity/openssl/openssl.inc

index f3a2c5abd722441aff6c1c0cd1dfb088a11c5d48..2ef8b38be884474d4da484d4480de602e80eb29a 100644 (file)
@@ -107,18 +107,24 @@ do_configure () {
        linux-gnu64-x86_64)
                target=linux-x86_64
                ;;
-       linux-mips)
-               target=debian-mips
+       linux-gnun32-mips*el)
+               target=debian-mipsn32el
+               ;;
+       linux-gnun32-mips*)
+               target=debian-mipsn32
+               ;;
+       linux-mips*64*el)
+               target=debian-mips64el
                ;;
-       linux-mipsel)
+       linux-mips*64*)
+               target=debian-mips64
+               ;;
+       linux-mips*el)
                target=debian-mipsel
                ;;
-        linux-*-mips64 | linux-mips64)
-               target=debian-mips64
-                ;;
-        linux-*-mips64el | linux-mips64el)
-               target=debian-mips64el
-                ;;
+       linux-mips*)
+               target=debian-mips
+               ;;
        linux-microblaze*|linux-nios2*)
                target=linux-generic32
                ;;