Date: Sun, 23 Feb 2014 22:20:52 +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: r262406 - head/sys/boot/mips Message-ID: <201402232220.s1NMKqoO062701@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rwatson Date: Sun Feb 23 22:20:52 2014 New Revision: 262406 URL: http://svnweb.freebsd.org/changeset/base/262406 Log: Build the BERI boot loader on 64-bit MIPS (but not 32-bit MIPS). While these binaries aren't immediately useful on other MIPSes, still build them as part of mips64 world in order to expose them to tinderbox. MFC after: 3 weeks Sponsored by: DARPA, AFRL Modified: head/sys/boot/mips/Makefile Modified: head/sys/boot/mips/Makefile ============================================================================== --- head/sys/boot/mips/Makefile Sun Feb 23 22:13:16 2014 (r262405) +++ head/sys/boot/mips/Makefile Sun Feb 23 22:20:52 2014 (r262406) @@ -1,6 +1,11 @@ # $FreeBSD$ -.if 0 +# +# The BERI boot loader port works only on 64-bit MIPS; not a hard port to +# 32-bit if someone is interested. Build on all 64-bit MIPS platforms to +# ensure it gets adequate build-test coverage. +# +.if ${MACHINE_ARCH} == "mips64" SUBDIR= beri .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402232220.s1NMKqoO062701>