Skip to content

Commit

Permalink
Fix thrustmaster udev driver key
Browse files Browse the repository at this point in the history
Fixes udev DRIVER rules key that is incorrectly using assignment "="
instead of comparison "==", which causes the rule to not be
evaluated correctly.
  • Loading branch information
adam820 authored and berarma committed Jun 16, 2024
1 parent 63453b5 commit adbf6f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/udev/99-thrustmaster-wheel-perms.rules
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ GOTO="end"

LABEL="thrustmaster-rules"

DRIVER="tmff2" GOTO="tmff-new"
DRIVER="hid-tmff-new" GOTO="tmff-new"
DRIVER="hid-t150" GOTO="t150"
DRIVER=="tmff2" GOTO="tmff-new"
DRIVER=="hid-tmff-new" GOTO="tmff-new"
DRIVER=="hid-t150" GOTO="t150"
DRIVER!="t500rs" GOTO="end"

# Thrustmaster T500RS Racing Wheel (USB)
Expand Down

0 comments on commit adbf6f7

Please sign in to comment.