mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Honor MK_ACPI in etc/devd and etc/rc.d
MFC after: 1 week Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
61940879ef
commit
4a0ea4d698
3 changed files with 10 additions and 1 deletions
|
|
@ -2,12 +2,16 @@
|
||||||
|
|
||||||
.include <src.opts.mk>
|
.include <src.opts.mk>
|
||||||
|
|
||||||
|
FILES=
|
||||||
|
|
||||||
.if ${MACHINE} == "powerpc"
|
.if ${MACHINE} == "powerpc"
|
||||||
FILES+= apple.conf
|
FILES+= apple.conf
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
||||||
|
.if ${MK_ACPI} != "no"
|
||||||
FILES+= asus.conf
|
FILES+= asus.conf
|
||||||
|
.endif
|
||||||
.if ${MK_HYPERV} != "no"
|
.if ${MK_HYPERV} != "no"
|
||||||
FILES+= hyperv.conf
|
FILES+= hyperv.conf
|
||||||
.endif
|
.endif
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,6 @@ FILES= DAEMON \
|
||||||
pflog \
|
pflog \
|
||||||
pfsync \
|
pfsync \
|
||||||
powerd \
|
powerd \
|
||||||
power_profile \
|
|
||||||
ppp \
|
ppp \
|
||||||
pppoed \
|
pppoed \
|
||||||
pwcheck \
|
pwcheck \
|
||||||
|
|
@ -155,6 +154,10 @@ FILES= DAEMON \
|
||||||
zfs \
|
zfs \
|
||||||
zvol
|
zvol
|
||||||
|
|
||||||
|
.if ${MK_ACPI} != "no"
|
||||||
|
FILES+= power_profile
|
||||||
|
.endif
|
||||||
|
|
||||||
.if ${MK_AUTOFS} != "no"
|
.if ${MK_AUTOFS} != "no"
|
||||||
FILES+= automount
|
FILES+= automount
|
||||||
FILES+= automountd
|
FILES+= automountd
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,8 @@ OLD_FILES+=usr/share/man/man8/sa.8.gz
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MK_ACPI} == no
|
.if ${MK_ACPI} == no
|
||||||
|
OLD_FILES+=etc/devd/asus.conf
|
||||||
|
OLD_FILES+=etc/rc.d/power_profile
|
||||||
OLD_FILES+=usr/sbin/acpiconf
|
OLD_FILES+=usr/sbin/acpiconf
|
||||||
OLD_FILES+=usr/sbin/acpidb
|
OLD_FILES+=usr/sbin/acpidb
|
||||||
OLD_FILES+=usr/sbin/acpidump
|
OLD_FILES+=usr/sbin/acpidump
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue