svn commit: r296387 - head

Ed Maste emaste at FreeBSD.org
Fri Mar 4 16:03:17 UTC 2016


Author: emaste
Date: Fri Mar  4 16:03:15 2016
New Revision: 296387
URL: https://svnweb.freebsd.org/changeset/base/296387

Log:
  Add dd as a bootstrap tool, for status= support
  
  In r295757 I added status=none to buildworld's use of dd, but FreeBSD
  versions before April 2014 lack support.

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Mar  4 15:30:41 2016	(r296386)
+++ head/Makefile.inc1	Fri Mar  4 16:03:15 2016	(r296387)
@@ -1471,6 +1471,11 @@ ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libne
 _cat=		bin/cat
 .endif
 
+# r264059 support for status=
+.if ${BOOTSTRAPPING} < 1100017
+_dd=		bin/dd
+.endif
+
 # r277259 crunchide: Correct 64-bit section header offset
 # r281674 crunchide: always include both 32- and 64-bit ELF support
 # r285986 crunchen: use STRIPBIN rather than STRIP
@@ -1546,6 +1551,7 @@ bootstrap-tools: .PHONY
     ${_dtc} \
     ${_awk} \
     ${_cat} \
+    ${_dd} \
     usr.bin/lorder \
     ${_libopenbsd} \
     ${_makewhatis} \


More information about the svn-src-head mailing list