Changeset a6cd72e for udev/50-udev.rules


Ignore:
Timestamp:
Feb 21, 2006, 1:37:37 AM (18 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
128c984
Parents:
ce36880
Message:

r861@server (orig r859): jim | 2005-12-06 22:41:11 -0800

r994@server: jim | 2005-12-06 22:39:42 -0800
Updates from 077 OpenSuse? Package


File:
1 edited

Legend:

Unmodified
Added
Removed
  • udev/50-udev.rules

    rce36880 ra6cd72e  
    1414#
    1515########################################################################
    16 
    17 # ignore these events until someone needs them
    18 SUBSYSTEM=="drivers",           OPTIONS="last_rule"
    19 SUBSYSTEM=="module",            OPTIONS="last_rule"
    2016
    2117# console
     
    5652SUBSYSTEM=="dvb", PROGRAM="/bin/sh -c 'K=%k; K=$${K#dvb}; printf dvb/adapter%%i/%%i $${K%%%%.*} $${K#*.}'", NAME="%c", GROUP="video"
    5753
    58 # Kino jogshuttle support
    59 SUBSYSTEM=="usb", ACTION=="add", ENV{PRODUCT}=="b33/10/*", RUN+="/usr/bin/killall --quiet -USR2 kino"
    60 SUBSYSTEM=="usb", ACTION=="add", ENV{PRODUCT}=="5f3/240/*", RUN+="/usr/bin/killall --quiet -USR2 kino"
    61 
    6254# input devices
    6355KERNEL=="mice",                 NAME="input/%k", MODE="0640"
     
    6860KERNEL=="uinput",               NAME="input/%k", MODE="0600"
    6961KERNEL=="lirc0",                NAME="%k", SYMLINK+="lirc"
    70 KERNEL=="input[0-9]*",          RUN+="/lib/udev/input_device.sh"
    71 KERNEL=="input[0-9]*",          ACTION=="add", ENV{ABS}=="[1-9]*", RUN+="/sbin/modprobe joydev"
     62KERNEL=="input[0-9]*", ACTION=="add", RUN+="input.sh"
    7263
    7364# printer
     
    9485# 167 /dev/specialix_sxctl Specialix serial control
    9586KERNEL=="sxctl",                NAME="specialix_sxctl", SYMLINK+="%k"
     87
     88# network
     89KERNEL=="tun", NAME="net/%k", MODE="0600"
    9690
    9791# misc devices
     
    121115KERNEL=="auer[0-9]*"            NAME="usb/%k"
    122116
     117# packet writing interface
    123118KERNEL=="pktcdvd",              NAME="pktcdvd/control"
    124119KERNEL=="pktcdvd[0-9]*",        NAME="pktcdvd/%k"
    125120
    126121# fix floppy devices
    127 KERNEL=="nvram", ACTION=="add", RUN+="/lib/udev/load_floppy_module.sh"
    128 KERNEL=="fd*", ACTION=="add", SYSFS{device/cmos}=="*", RUN+="/lib/udev/create_floppy_devices -c -t $sysfs{device/cmos} -m %M /dev/%k"
    129 KERNEL=="fd*", ACTION=="remove", RUN+="/lib/udev/remove_floppy_devices.sh %k"
     122KERNEL=="nvram", ACTION=="add", RUN+="load_floppy_module.sh"
     123KERNEL=="fd[0-9]*", ACTION=="add", SYSFS{device/cmos}=="*", RUN+="create_floppy_devices -c -t $sysfs{device/cmos} -m %M /dev/%k"
     124KERNEL=="fd[0-9]*", ACTION=="remove", RUN+="/bin/rm -f $root/%k*"
    130125
    131126# block devices
     
    143138SUBSYSTEM=="scsi_device", ACTION=="add", RUN+="/sbin/modprobe sg"
    144139
    145 # IDE modules
    146 SUBSYSTEM=="ide", ACTION=="add", RUN+="/lib/udev/load_ide_modules.sh"
     140# load IDE modules
     141SUBSYSTEM=="ide", ACTION=="add", RUN+="ide.sh"
    147142
    148143# device mapper
    149 KERNEL=="device-mapper", ACTION=="add", NAME="%k", SYMLINK+="mapper/control"
     144KERNEL=="device-mapper", NAME="%k", SYMLINK+="mapper/control"
    150145
    151146# check fstab and possibly mount
    152 SUBSYSTEM=="block", KERNEL=="sd*[0-9]|hd*[0-9]", ACTION=="add", RUN+="/lib/udev/mount.sh"
     147SUBSYSTEM=="block", ACTION=="add", KERNEL=="sd*[0-9]|hd*[0-9]", RUN+="mount.sh"
    153148
    154149# misc storage devices (non-block)
     
    179174SUBSYSTEM=="usb_device", PROGRAM="/bin/sh -c 'K=%k; K=$${K#usbdev}; printf bus/usb/%%03i/%%03i $${K%%%%.*} $${K#*.}'", NAME="%c", MODE="0644"
    180175
    181 # firmware loader
    182 SUBSYSTEM=="firmware", ACTION=="add", RUN+="/lib/udev/firmware.sh"
     176# kernel firmware loader
     177SUBSYSTEM=="firmware", ACTION=="add", RUN+="firmware.sh"
Note: See TracChangeset for help on using the changeset viewer.