summaryrefslogtreecommitdiff
path: root/udevtrigger.xml
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-09-03 03:04:20 +0200
committerKay Sievers <kay.sievers@suse.de>2006-09-03 03:04:20 +0200
commitfc89fe7edf83af465c1835d8eb985e4298ad2417 (patch)
tree4b1d5b230e5c51e3d41dd9348d4c833abab2e3be /udevtrigger.xml
parent3c2081fcb7e3c5483953aa8226112360fcb1aed7 (diff)
udevtrigger: options to filter by subsystem and sysfs attribute
Diffstat (limited to 'udevtrigger.xml')
-rw-r--r--udevtrigger.xml41
1 files changed, 39 insertions, 2 deletions
diff --git a/udevtrigger.xml b/udevtrigger.xml
index 170fcd6291..60a7b1eaf7 100644
--- a/udevtrigger.xml
+++ b/udevtrigger.xml
@@ -28,6 +28,11 @@
<arg><option>--verbose</option></arg>
<arg><option>--dry-run</option></arg>
<arg><option>--retry-failed</option></arg>
+ <arg><option>--help</option></arg>
+ <arg><option>--subsystem-match=<replaceable>subsystem</replaceable></option></arg>
+ <arg><option>--subsystem-nomatch=<replaceable>subsystem</replaceable></option></arg>
+ <arg><option>--attr-match=<replaceable>attribute=value</replaceable></option></arg>
+ <arg><option>--attr-nomatch=<replaceable>attribute=value</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
@@ -40,7 +45,7 @@
<varlistentry>
<term><option>--verbose</option></term>
<listitem>
- <para>Print the list of devices found in sysfs.</para>
+ <para>Print the list of devices which will be triggered.</para>
</listitem>
</varlistentry>
<varlistentry>
@@ -52,7 +57,39 @@
<varlistentry>
<term><option>--retry-failed</option></term>
<listitem>
- <para>Trigger events which are failed during a previous run.</para>
+ <para>Trigger only the events which are failed during a previous run.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><option>--subsystem-match=<replaceable>subsystem</replaceable></option></term>
+ <listitem>
+ <para>Trigger events for devices which belong to a matching subsystem. This option
+ can be specified multiple times and supports shell style pattern matching.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><option>--subsystem-nomatch=<replaceable>subsystem</replaceable></option></term>
+ <listitem>
+ <para>Do not trigger events for devices which belong to a matching subsystem. This option
+ can be specified multiple times and supports shell style pattern matching.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><option>--attr-match=<replaceable>attribute=value</replaceable></option></term>
+ <listitem>
+ <para>Trigger events for devices with a matching sysfs attribute. If a value is specified
+ along with the attribute name, the content of the attribute is matched against the given
+ value using shell style pattern matching. If no value is specified, the existence of the
+ sysfs attribute is checked. This option can be specified multiple times.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><option>--attr-nomatch<replaceable>attribute=value</replaceable></option></term>
+ <listitem>
+ <para>Do not trigger events for devices with a matching sysfs attribute. If a value is
+ specified along with the attribute name, the content of the attribute is matched against
+ the given value using shell style pattern matching. If no value is specified, the existence
+ of the sysfs attribute is checked. This option can be specified multiple times.</para>
</listitem>
</varlistentry>
</variablelist>