2009-08-26 17:00:38 +02:00
|
|
|
# /lib/udev/rules.d/40-slackware.rules
|
|
|
|
#
|
|
|
|
# Slackware custom udev rules
|
|
|
|
# Also see the following Slackware-provided custom rules files:
|
|
|
|
# 65-permissions.rules and 90-network.rules
|
|
|
|
#
|
|
|
|
# Any change in this file will be overwritten in upgrades. Put your
|
|
|
|
# custom rules somewhere else (90-local.rules is a good idea).
|
|
|
|
#
|
|
|
|
# See the udev man page to know the parameters you can use in udev
|
|
|
|
# rules.
|
|
|
|
#
|
|
|
|
|
|
|
|
# input devices
|
|
|
|
KERNEL=="mice", SYMLINK+="mouse"
|
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
# Set rfkill device writable by netdev group
|
|
|
|
KERNEL=="rfkill", GROUP:="netdev", MODE:="0664"
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
# Mount fusectl filesystem
|
|
|
|
KERNEL=="fuse", ACTION=="add", RUN+="/bin/mount -t fusectl fusectl /sys/fs/fuse/connections"
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
# Set default perms for /dev/ppp:
|
|
|
|
KERNEL=="ppp", MODE="0660", GROUP="dialout", OPTIONS+="static_node=ppp"
|
|
|
|
|