Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 06 Aug 2026 01:38:07 +0000
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: d690bf86d2c8 - stable/14 - rc.d/bthidd: Correct load_kld invocations
Message-ID:  <6a73e57f.39b9b.5dae0020@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/src/commit/?id=d690bf86d2c87d2f3f4c2cbed10deb8d065fe2df

commit d690bf86d2c87d2f3f4c2cbed10deb8d065fe2df
Author:     Li-Wen Hsu <lwhsu@FreeBSD.org>
AuthorDate: 2026-07-31 18:05:03 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2026-08-06 01:35:19 +0000

    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
    
    (cherry picked from commit b5fe1bc5c6e4b483aacadddd8bdf37aa12c89982)
---
 libexec/rc/rc.d/bthidd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libexec/rc/rc.d/bthidd b/libexec/rc/rc.d/bthidd
index 624b2b1be00f..b01fefcde474 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
 }


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a73e57f.39b9b.5dae0020>