From 05999b61145d80705db0d289d2b6e570577d321a Mon Sep 17 00:00:00 2001 From: Dan HorĂ¡k Date: Thu, 23 Sep 2010 16:33:54 +0200 Subject: switch from SYSFS to ATTRS in the rules --- ccw.udev | 18 +++++++++--------- 1 file 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" -- cgit