Changeset bda8cfb
- Timestamp:
- Aug 31, 2006, 9:18:26 AM (18 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- d49afdb
- Parents:
- 664631f
- Location:
- udev
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
udev/35-helper.rules
r664631f rbda8cfb 37 37 38 38 # adds floppy devices 39 KERNEL=="fd[0-9]*", ACTION=="add", SYSFS{cmos}=="*", RUN+="create_floppy_devices -c -t $sysfs{cmos} -m %M /dev/%k"t 40 39 KERNEL=="fd[0-9]*", ACTION=="add", ATTRS{cmos}=="*", RUN+="create_floppy_devices -c -t $sysfs{cmos} -m %M /dev/%k" -
udev/40-modprobe.rules
r664631f rbda8cfb 19 19 20 20 # scsi 21 SUBSYSTEM=="scsi_device", ACTION=="add", SYSFS{device/type}=="0|7|14", RUN+="/sbin/modprobe sd_mod"22 SUBSYSTEM=="scsi_device", ACTION=="add", SYSFS{device/type}=="1", SYSFS{device/vendor}=="On[sS]tream", RUN+="/sbin/modprobe osst"23 SUBSYSTEM=="scsi_device", ACTION=="add", SYSFS{device/type}=="1", RUN+="/sbin/modprobe st"24 SUBSYSTEM=="scsi_device", ACTION=="add", SYSFS{device/type}=="[45]", RUN+="/sbin/modprobe sr_mod"21 SUBSYSTEM=="scsi_device", ACTION=="add", ATTRS{type}=="0|7|14", RUN+="/sbin/modprobe sd_mod" 22 SUBSYSTEM=="scsi_device", ACTION=="add", ATTRS{type}=="1", SYSFS{device/vendor}=="On[sS]tream", RUN+="/sbin/modprobe osst" 23 SUBSYSTEM=="scsi_device", ACTION=="add", ATTRS{type}=="1", RUN+="/sbin/modprobe st" 24 SUBSYSTEM=="scsi_device", ACTION=="add", ATTRS{type}=="[45]", RUN+="/sbin/modprobe sr_mod" 25 25 SUBSYSTEM=="scsi_device", ACTION=="add", RUN+="/sbin/modprobe sg" 26 26 -
udev/50-udev.rules
r664631f rbda8cfb 35 35 KERNEL=="hvsi*", GROUP="uucp" 36 36 KERNEL=="iseries/vtty*", GROUP="uucp" 37 KERNEL=="ttyUSB*", SYSFS{product}=="[Pp]alm*Handheld*", SYMLINK+="pilot"37 KERNEL=="ttyUSB*", ATTRS{product}=="[Pp]alm*Handheld*", SYMLINK+="pilot" 38 38 39 39 # video/graphics -
udev/60-persistent-disk.rules
r664631f rbda8cfb 18 18 # scheme based on "Linux persistent device names", 2004, Hannes Reinecke <hare@suse.de> 19 19 20 ACTION!="add", GOTO="persistent_ end"21 SUBSYSTEM!="block", GOTO="persistent_ end"20 ACTION!="add", GOTO="persistent_storage_end" 21 SUBSYSTEM!="block", GOTO="persistent_storage_end" 22 22 23 23 # skip rules for inappropriate block devices 24 KERNEL=="ram*|loop*|fd*|nbd*", GOTO="persistent_end" 24 KERNEL=="ram*|loop*|fd*|nbd*", GOTO="persistent_storage_end" 25 26 # Set Permissions on CDOM 27 BUS=="ide", DRIVER=="ide-cdrom", ATTRS{removable}=="1", GROUP="cdrom", MODE="660" 25 28 26 29 # never access removable ide devices, the drivers are causing event loops on open() 27 BUS=="ide", DRIVER=="ide-cdrom", SYSFS{removable}=="1", GROUP="cdrom", MODE="660"28 BUS=="ide", DRIVER!="ide-cdrom", SYSFS{removable}=="1", GOTO="persistent_end"30 KERNEL=="hd*[!0-9]", ATTRS{removable}=="1", DRIVERS=="ide-cs|ide-floppy", GOTO="persistent_storage_end" 31 KERNEL=="hd*[0-9]", ATTRS{../removable}=="1", GOTO="persistent_storage_end" 29 32 30 33 # by-id (hardware serial number) … … 33 36 KERNEL=="hd*[0-9]", IMPORT{parent}=="ID_*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n" 34 37 35 KERNEL=="sd*[!0-9]|sr*", SYSFS{ieee1394_id}=="*", ENV{ID_SERIAL}="$sysfs{ieee1394_id}", ENV{ID_BUS}="ieee1394"38 KERNEL=="sd*[!0-9]|sr*", ATTRS{ieee1394_id}=="*", ENV{ID_SERIAL}="$attr{ieee1394_id}", ENV{ID_BUS}="ieee1394" 36 39 KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}=="", IMPORT{program}="usb_id -x" 37 40 KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -s %p -d $tempnode" … … 46 49 # by-path (shortest physical path) 47 50 KERNEL=="*[!0-9]|sr*", ENV{ID_TYPE}=="?*", IMPORT{program}="path_id %p", SYMLINK+="disk/by-path/$env{ID_PATH}" 48 KERNEL=="sr*", GOTO="persistent_ end"51 KERNEL=="sr*", GOTO="persistent_storage_end" 49 52 KERNEL=="*[0-9]", IMPORT{parent}=="ID_*" 50 53 KERNEL=="*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n" 51 54 52 55 # by-label/by-uuid (filesystem properties) 53 KERNEL=="*[!0-9]", SYSFS{removable}=="1", GOTO="persistent_end"56 KERNEL=="*[!0-9]", ATTRS{removable}=="1", GOTO="persistent_storage_end" 54 57 IMPORT{program}="vol_id --export $tempnode" 55 58 ENV{ID_FS_UUID}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID}" … … 63 66 KERNEL=="dm-[0-9]*", ACTION=="add", PROGRAM="/sbin/dmsetup info -c --noopencount --noheadings -o name -j %M -m %m", SYMLINK+="disk/by-name/%c" 64 67 65 LABEL="persistent_ end"68 LABEL="persistent_storage_end" -
udev/61-persistent-input.rules
r664631f rbda8cfb 21 21 # usb devices 22 22 BUS=="usb", IMPORT{program}="usb_id -x" 23 BUS=="usb", SYSFS{bInterfaceClass}=="03", SYSFS{bInterfaceProtocol}=="01", ENV{ID_CLASS}="kbd" 24 BUS=="usb", SYSFS{bInterfaceClass}=="03", SYSFS{bInterfaceProtocol}=="02", ENV{ID_CLASS}="mouse" 23 BUS=="usb", ATTRS{bInterfaceClass}=="03", ATTRS{bInterfaceProtocol}=="01", ENV{ID_CLASS}="kbd" 24 BUS=="usb", ATTRS{bInterfaceClass}=="03", ATTRS{bInterfaceProtocol}=="02", ENV{ID_CLASS}="mouse" 25 26 # other devices 27 DRIVERS=="pcspkr", ENV{ID_CLASS}="spkr" 28 DRIVERS=="atkbd", ENV{ID_CLASS}="kbd" 29 DRIVERS=="psmouse", ENV{ID_CLASS}="mouse" 30 ATTRS{name}=="*dvb*|*DVB*|* IR *", ENV{ID_CLASS}="ir" 31 ATTRS{modalias}=="input:*-*a[068],*|input:*-*a*,[68],*m*", ATTRS{modalias}!="input:*-*k*14A,*r*", ENV{ID_CLASS}="joystick" 32 33 ENV{ID_SERIAL}=="", ENV{ID_SERIAL}="noserial" 25 34 26 35 # by-id links -
udev/Makefile
r664631f rbda8cfb 83 83 @echo "---------------------------------------------------------------------------------------" 84 84 @echo "make install install udev rules package and helper scripts" 85 @echo "make install-device-mapper install device-mapper rules" 85 86 @echo "make install-netboot install udev rules package for netboot" 86 87 @echo "make install-network install network helper package" … … 95 96 install -m 644 contrib/common/udev_helper ${DESTDIR}/etc/sysconfig/udev_helper 96 97 98 install-device-mapper: 99 install -d ${DESTDIR}/lib/udev 100 install -d ${DESTDIR}/etc/rc.d/init.d 101 install -m ${RULESMODE} 70-device-mapper.rules ${DESTDIR}/etc/udev/rules.d/70-device-mapper.rules 102 97 103 install-network: install-helper-functions install-network-update 98 104 install -d ${DESTDIR}/etc/udev/rules.d/
Note:
See TracChangeset
for help on using the changeset viewer.