Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Mar 2016 16:03:15 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r296387 - head
Message-ID:  <201603041603.u24G3F3V033038@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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} \



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