12345678910111213141516171819 |
- # UDEV Rules for AutoBrightness modules.
- # This file must be placed at:
- #
- # /etc/udev/rules.d/49-autobrightness.rules (preferred location)
- # or
- # /lib/udev/rules.d/49-autobrightness.rules (req'd on some broken systems)
- #
- # To install, type these commands in a terminal:
- # sudo cp 49-autobrightness.rules /etc/udev/rules.d/49-autobrightness.rules
- # sudo udevadm control --reload-rules
- #
- # After this file is copied, physically unplug and reconnect the board.
- #
- SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", ATTRS{manufacturer}=="xythobuz.de", ATTRS{product}=="AutoBrightness", MODE:="0666"
- #
- # If you share your linux system with other users, or just don't like the
- # idea of write permission for everybody, you can replace MODE:="0666" with
- # OWNER:="yourusername" to create the device owned by you, or with
- # GROUP:="somegroupname" and mange access using standard unix groups.
|