summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Horák <dan@danny.cz>2010-09-23 16:33:54 +0200
committerDan Horák <dan@danny.cz>2010-09-23 16:33:54 +0200
commit05999b61145d80705db0d289d2b6e570577d321a (patch)
treec2ed1b48578570f5cfcfdf8b20f586833a4999f9
parent76e65fc69d3bc436ce575732f3bebd45319fad0e (diff)
downloadutils-05999b61145d80705db0d289d2b6e570577d321a.tar.gz
utils-05999b61145d80705db0d289d2b6e570577d321a.tar.xz
utils-05999b61145d80705db0d289d2b6e570577d321a.zip
switch from SYSFS to ATTRS in the rules
-rw-r--r--ccw.udev18
1 files changed, 9 insertions, 9 deletions
diff --git a/ccw.udev b/ccw.udev
index b8b6569..780d127 100644
--- a/ccw.udev
+++ b/ccw.udev
@@ -1,12 +1,12 @@
ACTION!="add|change", GOTO="ccw_end"
SUBSYSTEM!="ccw", GOTO="ccw_end"
-SYSFS{cutype}=="1731/01", RUN+="ccw_init"
-SYSFS{cutype}=="1731/05", RUN+="ccw_init"
-SYSFS{cutype}=="1731/06", RUN+="ccw_init"
-SYSFS{cutype}=="3088/01", RUN+="ccw_init"
-SYSFS{cutype}=="3088/08", RUN+="ccw_init"
-SYSFS{cutype}=="3088/60", RUN+="ccw_init"
-SYSFS{cutype}=="3088/61", RUN+="ccw_init"
-SYSFS{cutype}=="3088/1e", RUN+="ccw_init"
-SYSFS{cutype}=="3088/1f", RUN+="ccw_init"
+ATTRS{cutype}=="1731/01", RUN+="ccw_init"
+ATTRS{cutype}=="1731/05", RUN+="ccw_init"
+ATTRS{cutype}=="1731/06", RUN+="ccw_init"
+ATTRS{cutype}=="3088/01", RUN+="ccw_init"
+ATTRS{cutype}=="3088/08", RUN+="ccw_init"
+ATTRS{cutype}=="3088/60", RUN+="ccw_init"
+ATTRS{cutype}=="3088/61", RUN+="ccw_init"
+ATTRS{cutype}=="3088/1e", RUN+="ccw_init"
+ATTRS{cutype}=="3088/1f", RUN+="ccw_init"
LABEL="ccw_end"