aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2023-02-01 07:44:46 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2023-02-08 07:51:34 +0000
commit9150a0455e435e11d27b9b3f89a30cb2f04fe59e (patch)
treea0661214b741061b38b4a3ca7dad5572a6fc9042
parentf4d9116de1dadc26d35302e1c5eb125e7de30db1 (diff)
downloadsrc-9150a0455e435e11d27b9b3f89a30cb2f04fe59e.tar.gz
src-9150a0455e435e11d27b9b3f89a30cb2f04fe59e.zip
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
-rw-r--r--sbin/devd/Makefile7
-rw-r--r--sbin/devd/bluetooth.conf9
-rw-r--r--sbin/devd/devd.conf10
3 files changed, 16 insertions, 10 deletions
diff --git a/sbin/devd/Makefile b/sbin/devd/Makefile
index c9d2470f30b5..5b2feb6c2bdb 100644
--- a/sbin/devd/Makefile
+++ b/sbin/devd/Makefile
@@ -17,6 +17,13 @@ DHCLIENTDIR= ${DEVDDIR}
DHCLIENT+= dhclient.conf
DHCLIENTPACKAGE= dhclient
+.if ${MK_BLUETOOTH} != "no"
+CONFGROUPS+= BLUETOOTH
+BLUETOOTHDIR= ${DEVDDIR}
+BLUETOOTH+= bluetooth.conf
+BLUETOOTHPACKAGE= bluetooth
+.endif
+
.if ${MK_HYPERV} != "no"
CONFGROUPS+= HYPERV
HYPERVDIR=${DEVDDIR}
diff --git a/sbin/devd/bluetooth.conf b/sbin/devd/bluetooth.conf
new file mode 100644
index 000000000000..29bd51e36fca
--- /dev/null
+++ b/sbin/devd/bluetooth.conf
@@ -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";
+};
diff --git a/sbin/devd/devd.conf b/sbin/devd/devd.conf
index f7a8ea7ac8aa..43596fb9a9d5 100644
--- a/sbin/devd/devd.conf
+++ b/sbin/devd/devd.conf
@@ -69,16 +69,6 @@ detach 100 {
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
#attach 100 {
# match "vendor" "0x0cf3";