blob: 9e8c634283527c2af434bfcca50e88f0c392c606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# /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"
# Set rfkill device writable by netdev group
KERNEL=="rfkill", GROUP:="netdev", MODE:="0664"
# Mount fusectl filesystem
KERNEL=="fuse", ACTION=="add", RUN+="/bin/mount -t fusectl fusectl /sys/fs/fuse/connections"
|