Преглед изворни кода

Add TMK "FEED" VID to list of deprecated udev rules

fauxpark пре 4 година
родитељ
комит
72b1ff5899
2 измењених фајлова са 1 додато и 14 уклоњено
  1. 0 14
      docs/faq_debug.md
  2. 1 0
      lib/python/qmk/cli/doctor.py

+ 0 - 14
docs/faq_debug.md

@@ -31,20 +31,6 @@ Check:
 - try using 'print' function instead of debug print. See **common/print.h**.
 - disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97).
 
-## Linux or UNIX Like System Requires Super User Privilege
-Just use 'sudo' to execute *hid_listen* with privilege.
-```
-$ sudo hid_listen
-```
-
-Or add an *udev rule* for TMK devices with placing a file in rules directory. The directory may vary on each system.
-
-File: /etc/udev/rules.d/52-tmk-keyboard.rules(in case of Ubuntu)
-```
-# tmk keyboard products     https://github.com/tmk/tmk_keyboard
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="feed", MODE:="0666"
-```
-
 ***
 
 # Miscellaneous

+ 1 - 0
lib/python/qmk/cli/doctor.py

@@ -181,6 +181,7 @@ def check_udev_rules():
         'stm32': {_deprecated_udev_rule("1eaf", "0003"), _deprecated_udev_rule("0483", "df11")},
         'bootloadhid': {_deprecated_udev_rule("16c0", "05df")},
         'caterina': {'ATTRS{idVendor}=="2a03", ENV{ID_MM_DEVICE_IGNORE}="1"', 'ATTRS{idVendor}=="2341", ENV{ID_MM_DEVICE_IGNORE}="1"'}
+        'tmk': {_deprecated_udev_rule("feed")}
     }
 
     if udev_dir.exists():