diff options
author | Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | 2016-12-16 15:14:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-22 08:46:35 +0000 |
commit | cd1f6fbf9a2113cf510c25de2eb3895468e79149 (patch) | |
tree | d189b7e8f878f3c026b2d81b4d60846002ab59fd | |
parent | 06127d0115ba449bf04e2579cd1010065e0ed6e3 (diff) | |
download | openembedded-core-cd1f6fbf9a2113cf510c25de2eb3895468e79149.tar.gz openembedded-core-cd1f6fbf9a2113cf510c25de2eb3895468e79149.tar.bz2 openembedded-core-cd1f6fbf9a2113cf510c25de2eb3895468e79149.zip |
openssl: Add support for many MIPS configurations
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>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc index f3a2c5abd7..2ef8b38be8 100644 --- a/meta/recipes-connectivity/openssl/openssl.inc +++ b/meta/recipes-connectivity/openssl/openssl.inc @@ -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 ;; |