diff options
author | Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | 2016-09-14 17:53:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-16 15:24:02 +0100 |
commit | 84e0260e036a5b294a37069fe163cb395e6427f4 (patch) | |
tree | 10a530e142dcecb32358583c6daba224b4b95ac5 /meta/recipes-connectivity | |
parent | a7a6d0557975ac494f2ee67bc2390c659a65c37d (diff) | |
download | poky-84e0260e036a5b294a37069fe163cb395e6427f4.tar.gz |
openssl: Fix MIPS64be and add MIPS64le
MIPS64 target was being configured for linux-mips which defaults to
MIPS32. Doesn't cause any issue as far as I can see but it would be
wiser to use the correct target configuration.
Also add MIPS64le configuration which is missing.
(From OE-Core rev: 0afec72913bc31d315cba079da317e8b28755ded)
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc index de8b6ac43d..f83664c271 100644 --- a/meta/recipes-connectivity/openssl/openssl.inc +++ b/meta/recipes-connectivity/openssl/openssl.inc | |||
@@ -114,7 +114,10 @@ do_configure () { | |||
114 | target=debian-mipsel | 114 | target=debian-mipsel |
115 | ;; | 115 | ;; |
116 | linux-*-mips64 | linux-mips64) | 116 | linux-*-mips64 | linux-mips64) |
117 | target=linux-mips | 117 | target=debian-mips64 |
118 | ;; | ||
119 | linux-*-mips64el | linux-mips64el) | ||
120 | target=debian-mips64el | ||
118 | ;; | 121 | ;; |
119 | linux-microblaze*|linux-nios2*) | 122 | linux-microblaze*|linux-nios2*) |
120 | target=linux-generic32 | 123 | target=linux-generic32 |