From fb80f57334d2a5abf8ae105c9b4fe3274f138c24 Mon Sep 17 00:00:00 2001 From: ngie Date: Sat, 5 Dec 2015 22:51:20 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.freebsd.org/base/stable/10@291874 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- rescue/rescue/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index a72e69f46..9b991412d 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -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 .include -- 2.45.0