From bc68049589537447cb0cb016302bd67b53e5b7c3 Mon Sep 17 00:00:00 2001 From: "Derek J. Clark" Date: Tue, 12 May 2026 22:38:48 -0700 Subject: [PATCH] fix(Hardware Support): Update MSI Claw Driver Name - Upstream requested a driver name change from hid-msi-claw to hid-msi. Update the udev rules to reflect the new name. - Don't force mkeys to be on. --- .../usr/lib/udev/rules.d/99-inputplumber-device-setup.rules | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rootfs/usr/lib/udev/rules.d/99-inputplumber-device-setup.rules b/rootfs/usr/lib/udev/rules.d/99-inputplumber-device-setup.rules index f8e4a4e5..a2a2eb98 100644 --- a/rootfs/usr/lib/udev/rules.d/99-inputplumber-device-setup.rules +++ b/rootfs/usr/lib/udev/rules.d/99-inputplumber-device-setup.rules @@ -25,8 +25,6 @@ ACTION=="add|change|bind", ATTRS{idVendor}=="17ef", ATTRS{idProduct}=="61e[bcde] #ACTION=="add|change", KERNEL=="0003:0B05:1B4C*", SUBSYSTEM=="hid", DRIVER=="asus_rog_ally", ATTRS{bInterfaceNumber}=="05", ATTR{qam_mode}="0", GOTO="end" # MSI Claw Settings -ACTION=="add|change|bind", ATTRS{idVendor}=="0db0", ATTRS{idProduct}=="190[1-3]", SUBSYSTEM=="hid", DRIVER=="hid-msi-claw", ATTR{button_m1}="KEY_RIGHTBRACE", ATTR{button_m2}="KEY_LEFTBRACE", ATTR{mkeys_function}="macro" GOTO="end" +ACTION=="add|change|bind", ATTRS{idVendor}=="0db0", ATTRS{idProduct}=="190[1-3]", SUBSYSTEM=="hid", DRIVER=="hid-msi", ATTR{button_m1}="KEY_RIGHTBRACE", ATTR{button_m2}="KEY_LEFTBRACE", GOTO="end" LABEL="end" - -