1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-07 16:59:22 +00:00

openssl: Add support for many MIPS configurations

Add more case statements to catch MIPS tune configurations

(From OE-Core rev: cd1f6fbf9a2113cf510c25de2eb3895468e79149)

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Zubair Lutfullah Kakakhel
2016-12-16 15:14:19 +00:00
committed by Richard Purdie
parent 358befb76e
commit 39f83be8bd
+15 -9
View File
@@ -107,18 +107,24 @@ do_configure () {
linux-gnu64-x86_64)
target=linux-x86_64
;;
linux-mips)
target=debian-mips
linux-gnun32-mips*el)
target=debian-mipsn32el
;;
linux-mipsel)
linux-gnun32-mips*)
target=debian-mipsn32
;;
linux-mips*64*el)
target=debian-mips64el
;;
linux-mips*64*)
target=debian-mips64
;;
linux-mips*el)
target=debian-mipsel
;;
linux-*-mips64 | linux-mips64)
target=debian-mips64
;;
linux-*-mips64el | linux-mips64el)
target=debian-mips64el
;;
linux-mips*)
target=debian-mips
;;
linux-microblaze*|linux-nios2*)
target=linux-generic32
;;