svn commit: r326713 - head/tools/boot

Warner Losh imp at FreeBSD.org
Fri Dec 8 19:57:24 UTC 2017


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 \


More information about the svn-src-all mailing list