mirror of
https://github.com/RetroDECK/Wiki.git
synced 2025-01-19 05:35:37 +00:00
Wiki: Udev
This commit is contained in:
parent
9ecd95eca1
commit
7f4cb4b0a1
|
@ -8,6 +8,14 @@ Yes
|
|||
### Linux Kernel Support
|
||||
Yes, since 6.2 - `hid-playstation`
|
||||
|
||||
### Udev rules
|
||||
|
||||
```
|
||||
# Sony DualSense Edge Wireless-Controller; Bluetooth; USB
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0DF2*", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0df2", MODE="0660", TAG+="uaccess"
|
||||
```
|
||||
|
||||
## What is the Official RetroDECK - Steam Input Profile called?
|
||||
|
||||
- DualSense: `RetroDECK: DualSense`
|
||||
|
|
|
@ -8,6 +8,14 @@ Yes
|
|||
### Linux Kernel Support
|
||||
Yes, since 5.14 - `hid-playstation`
|
||||
|
||||
### Udev rules
|
||||
|
||||
```
|
||||
# Sony DualSense Wireless-Controller; Bluetooth; USB
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0CE6*", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ce6", MODE="0660", TAG+="uaccess"
|
||||
```
|
||||
|
||||
## What is the Official RetroDECK - Steam Input Profile called?
|
||||
|
||||
- DualSense: `RetroDECK: DualSense`
|
||||
|
|
|
@ -8,6 +8,17 @@ Yes
|
|||
### Linux Kernel Support
|
||||
Yes, 2.17 `hid-sony`
|
||||
|
||||
### Udev rules
|
||||
|
||||
```
|
||||
# Sony PlayStation DualShock 3; Bluetooth; USB
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:0268*", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0268", MODE="0660", TAG+="uaccess"
|
||||
|
||||
## Motion Sensors
|
||||
SUBSYSTEM=="input", KERNEL=="event*|input*", KERNELS=="*054C:0268*", TAG+="uaccess"
|
||||
```
|
||||
|
||||
## What is the Official RetroDECK - Steam Input Profile called?
|
||||
|
||||
- DualShock 3 / Sixaxis: `RetroDECK: DualShock 3`
|
||||
|
|
|
@ -8,6 +8,21 @@ Yes
|
|||
### Linux Kernel Support
|
||||
Yes, 3.15 `hid-sony`, replaced in 6.2 by `hid-playstation`
|
||||
|
||||
### Udev rules
|
||||
|
||||
```
|
||||
# Sony PlayStation DualShock 4; Bluetooth; USB
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Sony PlayStation DualShock 4 Slim; Bluetooth; USB
|
||||
KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0660", TAG+="uaccess"
|
||||
|
||||
# Sony PlayStation DualShock 4 Wireless Adapter; USB
|
||||
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0660", TAG+="uaccess"
|
||||
```
|
||||
|
||||
## What is the Official RetroDECK - Steam Input Profile called?
|
||||
|
||||
- DualShock 4: `RetroDECK: DualShock 4`
|
||||
|
|
Loading…
Reference in a new issue