svn commit: r291874 - stable/10/rescue/rescue

Garrett Cooper ngie at FreeBSD.org
Sat Dec 5 22:51:21 UTC 2015


Author: ngie
Date: Sat Dec  5 22:51:20 2015
New Revision: 291874
URL: https://svnweb.freebsd.org/changeset/base/291874

Log:
  MFC r289452,r289469:
  
  r289452 (by trasz):
  
  Add iscsictl(8) and iscsid(8) to rescue(8).  The point is to make it
  easier to build md_root images from rescue(8), to use with iSCSI boot.
  
  The change increases the size of rescue by 62kB, from 8728kB to 8790kB.
  
  Reviewed by:	bapt@
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D3865
  
  r289469:
  
  Make iscsictl and iscsid build if MK_ISCSI == yes

Modified:
  stable/10/rescue/rescue/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/rescue/rescue/Makefile
==============================================================================
--- stable/10/rescue/rescue/Makefile	Sat Dec  5 22:44:07 2015	(r291873)
+++ stable/10/rescue/rescue/Makefile	Sat Dec  5 22:51:20 2015	(r291874)
@@ -224,5 +224,10 @@ CRUNCH_ALIAS_chown= chgrp
 ##################################################################
 CRUNCH_LIBS+= -lm
 
+.if ${MK_ISCSI} != "no"
+CRUNCH_PROGS_usr.bin+=	iscsictl
+CRUNCH_PROGS_usr.sbin+=	iscsid
+.endif
+
 .include <bsd.crunchgen.mk>
 .include <bsd.prog.mk>


More information about the svn-src-stable mailing list