chiark / gitweb /
update Debian rules
authorMarco d'Itri <md@Linux.IT>
Mon, 29 May 2006 19:00:32 +0000 (21:00 +0200)
committerKay Sievers <kay.sievers@suse.de>
Mon, 29 May 2006 19:00:32 +0000 (21:00 +0200)
etc/udev/debian/hotplug.rules
etc/udev/debian/persistent-input.rules
etc/udev/debian/persistent.rules

index d592c5e9dcc2cb43f05cbfb285f0bf6e874c3346..426424de5ad68b794cbe35cd1a8bb7806b6684f6 100644 (file)
@@ -3,14 +3,9 @@ ACTION!="add", GOTO="hotplug_not_add_event"
 # check if the device has already been claimed by a driver
 ENV{PHYSDEVDRIVER}=="?*", SUBSYSTEM!="input", GOTO="hotplug_driver_loaded"
 
-# workarounds for kernels which lack $MODALIAS support
-SUBSYSTEM=="ieee1394", ENV{MODALIAS}!="?*", IMPORT{program}="modalias_ieee1394"
-SUBSYSTEM=="serio",    ENV{MODALIAS}!="?*", IMPORT{program}="modalias_serio"
-
 # load the drivers
 ENV{MODALIAS}=="?*",   RUN+="/sbin/modprobe $env{MODALIAS}"
 SUBSYSTEM=="ide",      ENV{MODALIAS}!="?*",    RUN+="ide.agent"
-SUBSYSTEM=="vio",      ENV{MODALIAS}!="?*",    RUN+="vio.agent"
 
 SUBSYSTEM=="pnp",      ENV{MODALIAS}!="?*",    RUN+="/bin/sh -c 'while read id; do /sbin/modprobe pnp:d$$id; done < /sys$devpath/id'"
 
index 339a365048bca39c1d05f11607b5705f76cd1702..293971266e038928525f8ab0d015ba08307e29c1 100644 (file)
@@ -10,6 +10,14 @@ BUS=="usb", SYSFS{bInterfaceClass}=="03", SYSFS{bInterfaceProtocol}=="01", \
 BUS=="usb", SYSFS{bInterfaceClass}=="03", SYSFS{bInterfaceProtocol}=="02", \
                                        ENV{ID_CLASS}="mouse"
 
+# other devices
+DRIVER=="pcspkr",                      ENV{ID_CLASS}="spkr"
+DRIVER=="atkbd",                       ENV{ID_CLASS}="kbd"
+DRIVER=="psmouse",                     ENV{ID_CLASS}="mouse"
+SYSFS{name}=="*dvb*|*DVB*|* IR *",     ENV{ID_CLASS}="ir"
+
+ENV{ID_SERIAL}=="",                    ENV{ID_SERIAL}="noserial"
+
 # by-id links, generic and for the event devices
 KERNEL=="mouse*", \
        ENV{ID_BUS}=="?*", ENV{ID_SERIAL}=="?*", ENV{ID_CLASS}=="?*", \
index 9f1887ddea1f18b4e1a299d38eb3bd0f6efa5458..349817d797543ef1239e94bf4fe5de458bc24ba8 100644 (file)
@@ -5,7 +5,7 @@ SUBSYSTEM!="block",                     GOTO="no_volume_id"
 ACTION!="add",                         GOTO="no_volume_id"
 
 # and we can safely ignore these kinds of devices
-KERNEL=="ram*|loop*|fd*|nbd*",         GOTO="no_volume_id"
+KERNEL=="ram*|loop*|fd*|nbd*|dm-*",    GOTO="no_volume_id"
 
 # skip removable ide devices, because open(2) on them causes an events loop
 KERNEL=="hd*[!0-9]",   SYSFS{removable}=="1", DRIVER=="ide-cs|ide-floppy", \
@@ -69,9 +69,6 @@ ENV{ID_FS_UUID}=="?*",                        ENV{ID_FS_USAGE}=="filesystem|other", \
 ENV{ID_FS_LABEL_SAFE}=="?*",           ENV{ID_FS_USAGE}=="filesystem|other", \
        SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}"
 
-#KERNEL=="dm-[0-9]*", PROGRAM="/sbin/dmsetup info -c --noopencount --noheadings -o name -j %M -m %m", \
-#      SYMLINK+="disk/by-name/%c"
-
 # end of processing
 LABEL="no_volume_id"