From e2b2fbe05fe97a512265d9978011650415e1589a Mon Sep 17 00:00:00 2001 From: Zubair Lutfullah Kakakhel Date: Wed, 14 Sep 2016 17:53:11 +0100 Subject: 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 Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- meta/recipes-connectivity/openssl/openssl.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'meta/recipes-connectivity') 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 () { 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 -- cgit 1.2.3-korg