Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Dec 2017 19:57:21 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r326713 - head/tools/boot
Message-ID:  <201712081957.vB8JvLFi094523@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri Dec  8 19:57:21 2017
New Revision: 326713
URL: https://svnweb.freebsd.org/changeset/base/326713

Log:
  Build WITHOUT_FORTH too, at least for amd64 and i386
  
  Sponsored by: Netflix

Modified:
  head/tools/boot/universe.sh

Modified: head/tools/boot/universe.sh
==============================================================================
--- head/tools/boot/universe.sh	Fri Dec  8 19:57:16 2017	(r326712)
+++ head/tools/boot/universe.sh	Fri Dec  8 19:57:21 2017	(r326713)
@@ -44,6 +44,14 @@ dobuild()
 top=$(make -V SRCTOP)
 cd $top/stand
 
+# Build without forth
+for i in \
+	amd64/amd64 \
+	i386/i386 \
+	; do
+    ta=${i##*/}
+    dobuild $ta _.boot.${ta}.no_forth.log "WITHOUT_FORTH=yes"
+done
 
 # Build without GELI
 for i in \



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