]> code.ossystems Code Review - openembedded-core.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, 22 Dec 2016 08:46:35 +0000 (08:46 +0000)
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>
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
                ;;