Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Feb 2014 18:44:22 +0000 (UTC)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r262453 - head/sys/boot/ficl
Message-ID:  <201402241844.s1OIiMYp058888@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rwatson
Date: Mon Feb 24 18:44:22 2014
New Revision: 262453
URL: http://svnweb.freebsd.org/changeset/base/262453

Log:
  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

Modified:
  head/sys/boot/ficl/Makefile

Modified: head/sys/boot/ficl/Makefile
==============================================================================
--- head/sys/boot/ficl/Makefile	Mon Feb 24 18:44:03 2014	(r262452)
+++ head/sys/boot/ficl/Makefile	Mon Feb 24 18:44:22 2014	(r262453)
@@ -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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402241844.s1OIiMYp058888>