mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-10 23:45:16 +01:00
This allows RPCS3 to communicate with Dualshock 3,4 and DualSense controller out of the box on Linux distributions and FreeBSD, without the need for manual actions.
27 lines
968 B
Plaintext
27 lines
968 B
Plaintext
# DualShock 3 over USB
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0268", MODE="0666"
|
|
|
|
# DualShock 3 over Bluetooth
|
|
KERNEL=="hidraw*", KERNELS=="*054C:0268*", MODE="0666"
|
|
|
|
# DualShock 4 over USB
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0666"
|
|
|
|
# DualShock 4 Wireless Adapter over USB
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0666"
|
|
|
|
# DualShock 4 Slim over USB
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0666"
|
|
|
|
# DualShock 4 over Bluetooth
|
|
KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0666"
|
|
|
|
# DualShock 4 Slim over Bluetooth
|
|
KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0666"
|
|
|
|
# PS5 DualSense controller over USB hidraw
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ce6", MODE="0666", TAG+="uaccess"
|
|
|
|
# PS5 DualSense controller over bluetooth hidraw
|
|
KERNEL=="hidraw*", KERNELS=="*054C:0CE6*", MODE="0666", TAG+="uaccess"
|