mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
devd: Move bluetooth part in devd/bluetooth.conf
And make it part of the FreeBSD-bluetooth package. This avoid calling service bluetooth on an installation without it installed. Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D38323
This commit is contained in:
parent
f4d9116de1
commit
9150a0455e
@ -17,6 +17,13 @@ DHCLIENTDIR= ${DEVDDIR}
|
|||||||
DHCLIENT+= dhclient.conf
|
DHCLIENT+= dhclient.conf
|
||||||
DHCLIENTPACKAGE= dhclient
|
DHCLIENTPACKAGE= dhclient
|
||||||
|
|
||||||
|
.if ${MK_BLUETOOTH} != "no"
|
||||||
|
CONFGROUPS+= BLUETOOTH
|
||||||
|
BLUETOOTHDIR= ${DEVDDIR}
|
||||||
|
BLUETOOTH+= bluetooth.conf
|
||||||
|
BLUETOOTHPACKAGE= bluetooth
|
||||||
|
.endif
|
||||||
|
|
||||||
.if ${MK_HYPERV} != "no"
|
.if ${MK_HYPERV} != "no"
|
||||||
CONFGROUPS+= HYPERV
|
CONFGROUPS+= HYPERV
|
||||||
HYPERVDIR=${DEVDDIR}
|
HYPERVDIR=${DEVDDIR}
|
||||||
|
9
sbin/devd/bluetooth.conf
Normal file
9
sbin/devd/bluetooth.conf
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# When a USB Bluetooth dongle appears, activate it
|
||||||
|
attach 100 {
|
||||||
|
device-name "ubt[0-9]+";
|
||||||
|
action "service bluetooth quietstart $device-name";
|
||||||
|
};
|
||||||
|
detach 100 {
|
||||||
|
device-name "ubt[0-9]+";
|
||||||
|
action "service bluetooth quietstop $device-name";
|
||||||
|
};
|
@ -69,16 +69,6 @@ detach 100 {
|
|||||||
device-name "ed50";
|
device-name "ed50";
|
||||||
};
|
};
|
||||||
|
|
||||||
# When a USB Bluetooth dongle appears, activate it
|
|
||||||
attach 100 {
|
|
||||||
device-name "ubt[0-9]+";
|
|
||||||
action "service bluetooth quietstart $device-name";
|
|
||||||
};
|
|
||||||
detach 100 {
|
|
||||||
device-name "ubt[0-9]+";
|
|
||||||
action "service bluetooth quietstop $device-name";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Firmware downloader for Atheros AR3011 based USB Bluetooth devices
|
# Firmware downloader for Atheros AR3011 based USB Bluetooth devices
|
||||||
#attach 100 {
|
#attach 100 {
|
||||||
# match "vendor" "0x0cf3";
|
# match "vendor" "0x0cf3";
|
||||||
|
Loading…
Reference in New Issue
Block a user