summaryrefslogtreecommitdiff
path: root/sys/boot/Makefile.ficl
diff options
context:
space:
mode:
authorRuslan Bukin <br@FreeBSD.org>2016-10-31 15:33:58 +0000
committerRuslan Bukin <br@FreeBSD.org>2016-10-31 15:33:58 +0000
commit5bca221511e448277905383c6c08180e624c7460 (patch)
tree6e8b7ee360ff41786ad352e2b2797425cfbd6255 /sys/boot/Makefile.ficl
parentad9f2cecd74098261d39c1b2a0e85908fa9e122f (diff)
downloadsrc-test-5bca221511e448277905383c6c08180e624c7460.tar.gz
src-test-5bca221511e448277905383c6c08180e624c7460.zip
Add full softfloat and hardfloat support for MIPS.
This adds new target architectures for hardfloat: mipselhf mipshf mips64elhf mips64hf. Tested in QEMU only. Sponsored by: DARPA, AFRL Sponsored by: HEIF5 Differential Revision: https://reviews.freebsd.org/D8376
Notes
Notes: svn path=/head/; revision=308130
Diffstat (limited to 'sys/boot/Makefile.ficl')
-rw-r--r--sys/boot/Makefile.ficl2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/Makefile.ficl b/sys/boot/Makefile.ficl
index de1427aa42859..ef9a11de347ac 100644
--- a/sys/boot/Makefile.ficl
+++ b/sys/boot/Makefile.ficl
@@ -6,7 +6,7 @@ FICLDIR?= ${SRCTOP}/sys/boot/ficl
.if ${MACHINE_CPUARCH} == "amd64" && defined(FICL32)
FICL_CPUARCH= i386
-.elif ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el"
+.elif ${MACHINE_ARCH:Mmips64*} != ""
FICL_CPUARCH= mips64
.else
FICL_CPUARCH= ${MACHINE_CPUARCH}