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-15 22:56:37 +0100 |
commit | 0afec72913bc31d315cba079da317e8b28755ded (patch) | |
tree | 1120396453c17a9673fe50963c9675b11197a29a | |
parent | 4cd143e0de7f0082f60f273f442f6255f28ec3e7 (diff) | |
download | openembedded-core-0afec72913bc31d315cba079da317e8b28755ded.tar.gz openembedded-core-0afec72913bc31d315cba079da317e8b28755ded.tar.bz2 openembedded-core-0afec72913bc31d315cba079da317e8b28755ded.zip |
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.
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 () { target=debian-mipsel ;; linux-*-mips64 | linux-mips64) - target=linux-mips + target=debian-mips64 + ;; + linux-*-mips64el | linux-mips64el) + target=debian-mips64el ;; linux-microblaze*|linux-nios2*) target=linux-generic32 |