diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-02-17 01:27:01 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:32:28 -0700 |
commit | 16378373cb9d96e5d424921806ff71f218e92694 (patch) | |
tree | aa43744b7023ccbbb874cf9557f5cd4e9a66699a /udev.8 | |
parent | 8bbf27514c5e59f4982d0164af6b5df00ca2bac9 (diff) |
[PATCH] udev - switch SYSFS_file to SYSFS{file}
Here we switch the configs and man pages to the new attribute syntax.
Also the 'partition trick' is mentioned in udev.8
I think it's more clear visible now, that inside the brackets are user
supplied values used and not some magic keys handled:
'SYSFS_dev' is now 'SYSFS{dev}'
The old syntax is still supported.
Diffstat (limited to 'udev.8')
-rw-r--r-- | udev.8 | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -144,7 +144,7 @@ Match the device number on the bus, like PCI bus id. .B PLACE Match the topological position on bus, like physical port of USB device .TP -.BI SYSFS_ filename +.BI SYSFS{ filename } Match sysfs device attribute like label, vendor, USB serial number, SCSI UUID or file system label. Up to 5 different sysfs files can be checked, with all of the values being required in order to match the rule. @@ -162,6 +162,13 @@ call. This key may used in any following rule after a .B PROGRAM call. .P +The +.B NAME +field given with the attribute +.BR NAME{ all_partitions } +will create all 15 partitions of a blockdevice. +This may be useful for removable media devices. +.P .RB "The " NAME " ," SYMLINK " and " PROGRAM fields support simple printf-like string substitution: .TP @@ -199,10 +206,10 @@ The '%' char itself. BUS="scsi", PROGRAM="/sbin/scsi_id", RESULT="OEM 0815", NAME="disk1" # USB printer to be called lp_color -BUS="usb", SYSFS_serial="W09090207101241330", NAME="lp_color" +BUS="usb", SYSFS{serial}="W09090207101241330", NAME="lp_color" # SCSI disk with a specific vendor and model number is to be called boot -BUS="scsi", SYSFS_vendor="IBM", SYSFS_model="ST336", NAME="boot%n" +BUS="scsi", SYSFS{vendor}="IBM", SYSFS{model}="ST336", NAME="boot%n" # sound card with PCI bus id 00:0b.0 to be called dsp BUS="pci", ID="00:0b.0", NAME="dsp" @@ -214,7 +221,7 @@ BUS="usb", PLACE="2.3", NAME="mouse1" KERNEL="ttyUSB1", NAME="pda", SYMLINK="palmtop handheld" # multiple USB webcams with symlinks to be called webcam0, webcam1, ... -BUS="usb", SYSFS_model="XV3", NAME="video%n", SYMLINK="webcam%n" +BUS="usb", SYSFS{model}="XV3", NAME="video%n", SYMLINK="webcam%n" .fi .P Permissions and ownership for the created device files may specified at |