1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-11-01 09:21:11 +03:00
systemd-stable/etc/udev/debian/udev.rules

100 lines
3.3 KiB
Plaintext
Raw Normal View History

# There are a number of modifiers that are allowed to be used in some
# of the different fields. They provide the following subsitutions:
#
2004-12-09 04:05:20 +03:00
# %n the "kernel number" of the device.
# For example, 'sda3' has a "kernel number" of '3'
# %e the smallest number for that name which does not matches an existing node
2005-07-07 00:09:05 +04:00
# %k the kernel name for the device
2004-12-09 04:05:20 +03:00
# %M the kernel major number for the device
# %m the kernel minor number for the device
# %b the bus id for the device
# %c the string returned by the PROGRAM
2005-07-07 00:09:05 +04:00
# %s{filename} the content of a sysfs attribute
# %% the '%' char itself
2004-12-09 04:05:20 +03:00
#
2005-02-06 03:08:31 +03:00
# workaround for devices which do not report media changes
2005-07-07 00:09:05 +04:00
BUS=="ide", KERNEL=="hd[a-z]", SYSFS{removable}=="1", \
PROGRAM="/sbin/ata_id --export $tempnode", ENV{ID_MODEL}=="IOMEGA_ZIP*", \
2005-07-07 00:09:05 +04:00
NAME="%k", OPTIONS+="all_partitions"
2004-12-09 04:05:20 +03:00
2005-02-06 03:08:31 +03:00
# SCSI devices
2005-07-07 00:09:05 +04:00
BUS=="scsi", KERNEL=="sr[0-9]*", NAME="scd%n", SYMLINK+="sr%n"
# USB devices
2005-07-07 00:09:05 +04:00
BUS=="usb", KERNEL=="auer[0-9]*", NAME="usb/%k"
BUS=="usb", KERNEL=="cpad[0-9]*", NAME="usb/%k"
BUS=="usb", KERNEL=="dabusb*", NAME="usb/%k"
BUS=="usb", KERNEL=="hiddev*", NAME="usb/%k"
BUS=="usb", KERNEL=="legousbtower*", NAME="usb/%k"
2005-07-07 00:09:05 +04:00
BUS=="usb", KERNEL=="lp[0-9]*", NAME="usb/%k"
BUS=="usb", KERNEL=="ttyUSB*", SYSFS{product}=="Palm Handheld*", \
SYMLINK+="pilot"
# usbfs-like devices
SUBSYSTEM=="usb_device", PROGRAM="/bin/sh -c 'K=%k K=$${K#usbdev} B=$${K%%%%.*} D=$${K#*.}; echo bus/usb/$$B/$$D'", \
SYMLINK+="%c"
2005-02-06 03:08:31 +03:00
# serial devices
2005-07-07 00:09:05 +04:00
KERNEL=="capi", NAME="capi20", SYMLINK+="isdn/capi20"
KERNEL=="capi[0-9]*", NAME="capi/%n"
2005-02-06 03:08:31 +03:00
# video devices
KERNEL=="dvb*", PROGRAM="/bin/sh -c 'K=%k K=$${K#dvb} A=$${K%%%%.*} D=$${K#*.}; echo dvb/adapter$$A/$$D'", \
2005-07-07 00:09:05 +04:00
NAME="%c"
KERNEL=="card[0-9]*", NAME="dri/%k"
2005-02-06 03:08:31 +03:00
# misc devices
2005-07-07 00:09:05 +04:00
KERNEL=="hw_random", NAME="hwrng"
KERNEL=="tun", NAME="net/%k"
2005-02-06 03:08:31 +03:00
2005-07-07 00:09:05 +04:00
KERNEL=="cdemu[0-9]*", NAME="cdemu/%n"
KERNEL=="pktcdvd[0-9]*", NAME="pktcdvd/%n"
KERNEL=="pktcdvd", NAME="pktcdvd/control"
2005-07-07 00:09:05 +04:00
KERNEL=="cpu[0-9]*", NAME="cpu/%n/cpuid"
KERNEL=="msr[0-9]*", NAME="cpu/%n/msr"
KERNEL=="microcode", NAME="cpu/microcode"
2005-07-07 00:09:05 +04:00
KERNEL=="umad*", NAME="infiniband/%k"
KERNEL=="issm*", NAME="infiniband/%k"
KERNEL=="uverbs*", NAME="infiniband/%k"
KERNEL=="ucm", NAME="infiniband/%k"
2005-02-06 03:08:31 +03:00
# ALSA devices
2005-07-07 00:09:05 +04:00
KERNEL=="controlC[0-9]*", NAME="snd/%k"
KERNEL=="hwC[D0-9]*", NAME="snd/%k"
KERNEL=="pcmC[D0-9cp]*", NAME="snd/%k"
KERNEL=="midiC[D0-9]*", NAME="snd/%k"
KERNEL=="timer", NAME="snd/%k"
KERNEL=="seq", NAME="snd/%k"
# ieee1394 devices
KERNEL=="dv1394*", NAME="dv1394/%n"
KERNEL=="video1394*", NAME="video1394/%n"
# input devices
2005-07-07 00:09:05 +04:00
KERNEL=="mice", NAME="input/%k"
KERNEL=="mouse[0-9]*", NAME="input/%k"
KERNEL=="event[0-9]*", NAME="input/%k"
KERNEL=="js[0-9]*", NAME="input/%k"
KERNEL=="ts[0-9]*", NAME="input/%k"
KERNEL=="uinput", NAME="input/%k"
2004-12-09 04:05:20 +03:00
# Zaptel
2005-07-07 00:09:05 +04:00
KERNEL=="zapctl", NAME="zap/ctl"
KERNEL=="zaptimer", NAME="zap/timer"
KERNEL=="zapchannel", NAME="zap/channel"
KERNEL=="zappseudo", NAME="zap/pseudo"
KERNEL=="zap[0-9]*", NAME="zap/%n"
2004-12-09 04:05:20 +03:00
2005-04-10 23:19:51 +04:00
# AOE character devices
2005-07-07 00:09:05 +04:00
SUBSYSTEM=="aoe", KERNEL=="discover", NAME="etherd/%k"
SUBSYSTEM=="aoe", KERNEL=="err", NAME="etherd/%k"
SUBSYSTEM=="aoe", KERNEL=="interfaces", NAME="etherd/%k"
2005-04-10 23:19:51 +04:00
# device mapper creates its own device nodes, so ignore these
2005-07-07 00:09:05 +04:00
KERNEL=="dm-[0-9]*", OPTIONS+="ignore_device"
KERNEL=="device-mapper", NAME="mapper/control"