aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2026-07-31 18:05:03 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2026-07-31 18:05:03 +0000
commitb5fe1bc5c6e4b483aacadddd8bdf37aa12c89982 (patch)
tree21151d20188df499435f7f8519b5bc2795e1969a
parentf7e7fab7bab17bb20ef2b25b01cb46d84fb9e31b (diff)
rc.d/bthidd: Correct load_kld invocations
Pass a single module name to load_kld for kbdmux and vkbd, allowing bthidd_prestart to load both modules successfully. Fixes: cfe1962a1925 (rc: Fix improper use of load_kld) MFC after: 3 days Sponsored by: The FreeBSD Foundation
-rwxr-xr-xlibexec/rc/rc.d/bthidd4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rc/rc.d/bthidd b/libexec/rc/rc.d/bthidd
index 275106a53d1e..6767391e1191 100755
--- a/libexec/rc/rc.d/bthidd
+++ b/libexec/rc/rc.d/bthidd
@@ -35,8 +35,8 @@ bthidd_prestart()
if evdev_enabled; then
load_kld -m uinput uinput
fi
- load_kld kbdmux kbdmux
- load_kld vkbd vkbd
+ load_kld kbdmux
+ load_kld vkbd
load_kld ng_btsocket
return 0
}