diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-07-23 00:02:28 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2009-07-23 00:02:28 +0200 |
commit | cf5bd04073671df31dbbaf525f870366b37e5256 (patch) | |
tree | de00ede71e117a8a62358d0329d69c310f3dbd2c /udev | |
parent | 1b691f831b43ceeef3d780f87e02fb177dd03281 (diff) |
udevadm: trigger - add --sysname-match=
$ udevadm trigger -n -v --subsystem-match=usb --sysname-match=2-1.1*
/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1
/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1.1
/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1.1/2-1.1.1:1.0
/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1.2
/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1.2/2-1.1.2:1.0
/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1.2/2-1.1.2:1.1
/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1:1.0
Diffstat (limited to 'udev')
-rw-r--r-- | udev/udevadm-trigger.c | 7 | ||||
-rw-r--r-- | udev/udevadm.xml | 7 |
2 files changed, 13 insertions, 1 deletions
diff --git a/udev/udevadm-trigger.c b/udev/udevadm-trigger.c index 2e9fe6ba96..db7d1e0571 100644 --- a/udev/udevadm-trigger.c +++ b/udev/udevadm-trigger.c @@ -102,6 +102,7 @@ int udevadm_trigger(struct udev *udev, int argc, char *argv[]) { "attr-match", required_argument, NULL, 'a' }, { "attr-nomatch", required_argument, NULL, 'A' }, { "property-match", required_argument, NULL, 'p' }, + { "sysname-match", required_argument, NULL, 'y' }, { "help", no_argument, NULL, 'h' }, {} }; @@ -127,7 +128,7 @@ int udevadm_trigger(struct udev *udev, int argc, char *argv[]) const char *val; char buf[UTIL_PATH_SIZE]; - option = getopt_long(argc, argv, "vnFo:t:hcp:s:S:a:A:", options, NULL); + option = getopt_long(argc, argv, "vnFo:t:hcp:s:S:a:A:y:", options, NULL); if (option == -1) break; @@ -176,6 +177,9 @@ int udevadm_trigger(struct udev *udev, int argc, char *argv[]) key = keyval(optarg, &val, buf, sizeof(buf)); udev_enumerate_add_match_property(udev_enumerate, key, val); break; + case 'y': + udev_enumerate_add_match_sysname(udev_enumerate, optarg); + break; case 'h': printf("Usage: udevadm trigger OPTIONS\n" " --verbose print the list of devices while running\n" @@ -191,6 +195,7 @@ int udevadm_trigger(struct udev *udev, int argc, char *argv[]) " --attr-match=<file[=<value>]> trigger devices with a matching attribute\n" " --attr-nomatch=<file[=<value>]> exclude devices with a matching attribute\n" " --property-match=<key>=<value> trigger devices with a matching property\n" + " --sysname-match=<name> trigger devices with a matching name\n" " --help\n\n"); goto exit; default: diff --git a/udev/udevadm.xml b/udev/udevadm.xml index 64e6f2aeb9..e4151e0ed4 100644 --- a/udev/udevadm.xml +++ b/udev/udevadm.xml @@ -217,6 +217,13 @@ specified multiple times and supports shell style pattern matching.</para> </listitem> </varlistentry> + <varlistentry> + <term><option>--sysname-match=<replaceable>name</replaceable></option></term> + <listitem> + <para>Trigger events for devices with a matching sys device name. This option can be + specified multiple times and supports shell style pattern matching.</para> + </listitem> + </varlistentry> </variablelist> </refsect2> |