summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>2016-09-14 17:53:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-18 13:14:22 +0100
commit819f7c3d038e19cc022a882955ea3eb9a7e6590e (patch)
tree591f61ff850d4d029b3c76d37e6ed618c31425ff
parent4245995f76a302b48d92b96ddfbf97381c808b83 (diff)
downloadpoky-819f7c3d038e19cc022a882955ea3eb9a7e6590e.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) (From OE-Core rev: e2b2fbe05fe97a512265d9978011650415e1589a) Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 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.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc
index a5ddf4d4b0..7b6a8578f6 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