diff options
author | ngie <ngie@FreeBSD.org> | 2015-01-26 08:04:38 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-01-26 08:04:38 +0000 |
commit | 947503ce8d6d8e0f6c731b76d64c7c6b05d37156 (patch) | |
tree | d6b3f83b2abd582871c96c6bb815c6a1d7de3e4c /etc/devd | |
parent | d0577f7c5ada6cfdfaa17575d6e787f3155bad06 (diff) | |
download | FreeBSD-src-947503ce8d6d8e0f6c731b76d64c7c6b05d37156.zip FreeBSD-src-947503ce8d6d8e0f6c731b76d64c7c6b05d37156.tar.gz |
Honor MK_ACPI in etc/devd and etc/rc.d
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'etc/devd')
-rw-r--r-- | etc/devd/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/devd/Makefile b/etc/devd/Makefile index 27dfb92..a0909af 100644 --- a/etc/devd/Makefile +++ b/etc/devd/Makefile @@ -2,12 +2,16 @@ .include <src.opts.mk> +FILES= + .if ${MACHINE} == "powerpc" FILES+= apple.conf .endif .if ${MACHINE} == "amd64" || ${MACHINE} == "i386" +.if ${MK_ACPI} != "no" FILES+= asus.conf +.endif .if ${MK_HYPERV} != "no" FILES+= hyperv.conf .endif |