svn commit: r315356 - in stable/10: rescue/rescue tools/build/mk
Ngie Cooper
ngie at FreeBSD.org
Thu Mar 16 02:02:35 UTC 2017
Author: ngie
Date: Thu Mar 16 02:02:33 2017
New Revision: 315356
URL: https://svnweb.freebsd.org/changeset/base/315356
Log:
MFC r315113:
Conditionally compile [additional] programs into rescue(8) if requested
Trivial oversight missed in r314240 cleanup because I enable these knobs on
my test machines.
MK_INET6_SUPPORT - rtsol
MK_NETCAT - nc
Modified:
stable/10/rescue/rescue/Makefile
stable/10/tools/build/mk/OptionalObsoleteFiles.inc
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/rescue/rescue/Makefile
==============================================================================
--- stable/10/rescue/rescue/Makefile Thu Mar 16 01:59:43 2017 (r315355)
+++ stable/10/rescue/rescue/Makefile Thu Mar 16 02:02:33 2017 (r315356)
@@ -97,7 +97,7 @@ CRUNCH_PROGS_sbin= badsect \
mount_msdosfs mount_nfs mount_nullfs \
mount_udf mount_unionfs newfs \
newfs_msdos nos-tun ping reboot \
- restore rcorder route rtsol savecore \
+ restore rcorder route savecore \
shutdown spppcontrol swapon sysctl tunefs umount
.if ${MK_ATM} != "no"
@@ -110,6 +110,7 @@ CRUNCH_PROGS_sbin+= ccdconfig
.if ${MK_INET6_SUPPORT} != "no"
CRUNCH_PROGS_sbin+= ping6
+CRUNCH_PROGS_sbin+= rtsol
.endif
.if ${MK_IPFILTER} != "no"
@@ -196,7 +197,7 @@ CRUNCH_BUILDOPTS_dhclient= -DRELEASE_CRU
#
CRUNCH_SRCDIRS+= usr.bin
-CRUNCH_PROGS_usr.bin= head mt nc sed tail tee
+CRUNCH_PROGS_usr.bin= head mt sed tail tee
CRUNCH_PROGS_usr.bin+= gzip
CRUNCH_ALIAS_gzip= gunzip gzcat zcat
@@ -218,6 +219,10 @@ CRUNCH_LIBS+= -lcrypto
.endif
CRUNCH_LIBS+= -lmd
+.if ${MK_NETCAT} != "no"
+CRUNCH_PROGS_usr.bin= nc
+.endif
+
CRUNCH_PROGS_usr.bin+= vi
CRUNCH_ALIAS_vi= ex
Modified: stable/10/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- stable/10/tools/build/mk/OptionalObsoleteFiles.inc Thu Mar 16 01:59:43 2017 (r315355)
+++ stable/10/tools/build/mk/OptionalObsoleteFiles.inc Thu Mar 16 02:02:33 2017 (r315356)
@@ -2487,6 +2487,7 @@ OLD_FILES+=usr/share/man/man8/traceroute
.if ${MK_INET6_SUPPORT} == no
OLD_FILES+=rescue/ping6
+OLD_FILES+=rescue/rtsol
.endif
#.if ${MK_INFO} == no
@@ -3887,6 +3888,7 @@ OLD_FILES+=usr/share/misc/windrv_stub.c
.endif
.if ${MK_NETCAT} == no
+OLD_FILES+=rescue/nc
OLD_FILES+=usr/bin/nc
OLD_FILES+=usr/share/man/man1/nc.1.gz
.endif
More information about the svn-src-stable-10
mailing list