From 0c468922a38e8145c025f3f7cdf11c1b8c666f9d Mon Sep 17 00:00:00 2001 From: Joshie Date: Mon, 20 Feb 2023 04:37:21 +0000 Subject: [PATCH] Support for Index bluetooth radios' serial port Set the /dev/ttyACMx permissions for any tty with USB parent attributes of 28de + 2102 -> 0666 so anyone can write to it. Otherwise, only those in uucp or dialout on some distros can write to it. --- 60-steam-vr.rules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/60-steam-vr.rules b/60-steam-vr.rules index 8bb6f02..a04ff66 100644 --- a/60-steam-vr.rules +++ b/60-steam-vr.rules @@ -23,3 +23,5 @@ KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="28de", ATTRS{idProduct KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="28de", ATTRS{idProduct}=="2150", MODE="0660", TAG+="uaccess" KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="28de", ATTRS{idProduct}=="2300", MODE="0660", TAG+="uaccess" KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="28de", ATTRS{idProduct}=="2301", MODE="0660", TAG+="uaccess" + +SUBSYSTEM=="tty", ATTRS{idVendor}=="28de", ATTRS{idProduct}=="2102", MODE="0660", TAG+="uaccess"