From owner-svn-src-all@FreeBSD.ORG Sun Feb 23 22:20:53 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A9197F8; Sun, 23 Feb 2014 22:20:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E9DCA1BFC; Sun, 23 Feb 2014 22:20:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1NMKqeI062702; Sun, 23 Feb 2014 22:20:52 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1NMKqoO062701; Sun, 23 Feb 2014 22:20:52 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <201402232220.s1NMKqoO062701@svn.freebsd.org> From: Robert Watson Date: Sun, 23 Feb 2014 22:20:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262406 - head/sys/boot/mips X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Feb 2014 22:20:53 -0000 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