freebsd-dev/etc/devd/Makefile
Xin LI 76cd7220b5 Use a devd event to start hv_kvpd instead of doing so in rc.d script.
This is cleaner and eliminates the unneeded startup of KVP daemon on
systems that do not run as a Hyper-V guest.

Submitted by:	hrs
X-MFC-with:	271493, 271688, 271699
2014-09-17 02:32:22 +00:00

30 lines
392 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
.if ${MACHINE} == "powerpc"
FILES+= apple.conf
.endif
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
FILES+= asus.conf
.endif
.if ${MK_USB} != "no"
FILES+= uath.conf usb.conf
.endif
.if ${MK_ZFS} != "no"
FILES+= zfs.conf
.endif
.if ${MK_HYPERV} != "no"
FILES+= hyperv.conf
.endif
NO_OBJ=
FILESDIR= /etc/devd
FILESMODE= 644
.include <bsd.prog.mk>