diff options
author | rwatson <rwatson@FreeBSD.org> | 2014-02-24 18:44:22 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2014-02-24 18:44:22 +0000 |
commit | fc50d252249dda79a747fe1d8e9291526cbe06d2 (patch) | |
tree | 63bef2507f930021b2bb6ea7e9046562f5868621 /sys/boot/ficl | |
parent | 1317f8e796ba5eb562c06b0979feed001bde945f (diff) | |
download | FreeBSD-src-fc50d252249dda79a747fe1d8e9291526cbe06d2.zip FreeBSD-src-fc50d252249dda79a747fe1d8e9291526cbe06d2.tar.gz |
Build FICL support into little-endian 64-bit MIPS boot-loader fragments;
while this won't actually be used for anything (yet), it doesn't hurt to
ensure it is exposed to the tinderbox.
Requested by: imp, jmallett
MFC after: 3 weeks
Diffstat (limited to 'sys/boot/ficl')
-rw-r--r-- | sys/boot/ficl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile index 08656f3..684df5b 100644 --- a/sys/boot/ficl/Makefile +++ b/sys/boot/ficl/Makefile @@ -5,7 +5,7 @@ FICLDIR?= ${.CURDIR} .if !defined(FICL64) .PATH: ${FICLDIR}/${MACHINE_CPUARCH:S/amd64/i386/} -.elif ${MACHINE_ARCH} == "mips64" +.elif ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" .PATH: ${FICLDIR}/${MACHINE_ARCH} .else .PATH: ${FICLDIR}/${MACHINE_CPUARCH} |