diff options
| author | Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | 2016-12-16 15:14:19 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-18 13:07:32 +0100 |
| commit | ae95c1e7cbfb8cccf689274d4da95da76d4bee02 (patch) | |
| tree | 5bef2c5a0c4e488e7828eb3cff07c89b83c3f1e3 | |
| parent | 458b9e69494895a3bce955164819e725292310a7 (diff) | |
| download | poky-ae95c1e7cbfb8cccf689274d4da95da76d4bee02.tar.gz | |
openssl: Add support for many MIPS configurations
Add more case statements to catch MIPS tune configurations
(From OE-Core rev: d9f8f12881d1b1be5761f0aa3a1785f979dc9076)
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -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 | ;; |
