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:50:16 +0000 |
commit | 39f83be8bd7af58a125919c9e92d6b450f1193b1 (patch) | |
tree | 769019258653aff7837f9b052d2019c2c13e4678 /meta/recipes-connectivity/openssl/openssl.inc | |
parent | 358befb76ede4b111a9ee913ae2586ea30dc23b7 (diff) | |
download | poky-39f83be8bd7af58a125919c9e92d6b450f1193b1.tar.gz |
openssl: Add support for many MIPS configurations
Add more case statements to catch MIPS tune configurations
(From OE-Core rev: cd1f6fbf9a2113cf510c25de2eb3895468e79149)
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl.inc')
-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 () { | |||
107 | linux-gnu64-x86_64) | 107 | linux-gnu64-x86_64) |
108 | target=linux-x86_64 | 108 | target=linux-x86_64 |
109 | ;; | 109 | ;; |
110 | linux-mips) | 110 | linux-gnun32-mips*el) |
111 | target=debian-mips | 111 | target=debian-mipsn32el |
112 | ;; | ||
113 | linux-gnun32-mips*) | ||
114 | target=debian-mipsn32 | ||
115 | ;; | ||
116 | linux-mips*64*el) | ||
117 | target=debian-mips64el | ||
112 | ;; | 118 | ;; |
113 | linux-mipsel) | 119 | linux-mips*64*) |
120 | target=debian-mips64 | ||
121 | ;; | ||
122 | linux-mips*el) | ||
114 | target=debian-mipsel | 123 | target=debian-mipsel |
115 | ;; | 124 | ;; |
116 | linux-*-mips64 | linux-mips64) | 125 | linux-mips*) |
117 | target=debian-mips64 | 126 | target=debian-mips |
118 | ;; | 127 | ;; |
119 | linux-*-mips64el | linux-mips64el) | ||
120 | target=debian-mips64el | ||
121 | ;; | ||
122 | linux-microblaze*|linux-nios2*) | 128 | linux-microblaze*|linux-nios2*) |
123 | target=linux-generic32 | 129 | target=linux-generic32 |
124 | ;; | 130 | ;; |