summaryrefslogtreecommitdiff
path: root/test.tty
diff options
context:
space:
mode:
authorrml@mvista.com <rml@mvista.com>2003-10-17 23:54:14 -0700
committerGreg KH <gregkh@suse.de>2005-04-26 21:01:41 -0700
commit5892ceb540405861e51db3832d4f5cbab123056f (patch)
treee3ff5f1b8bdd65ed08d5b8567e1c2f63516ebcf4 /test.tty
parent577aade748378e9b01d50d6ceb93c9c949d24228 (diff)
[PATCH] udev: cool test scripts
This patch changes test.tty and test.block to add/remove each tty and block device, respectively, on the system. Great way to populate/unpopulate udev rapidly. Its just a simple for loop over the sysfs entries.
Diffstat (limited to 'test.tty')
-rw-r--r--test.tty18
1 files changed, 10 insertions, 8 deletions
diff --git a/test.tty b/test.tty
index 2d64f07d3e..ec8b1d0404 100644
--- a/test.tty
+++ b/test.tty
@@ -1,10 +1,12 @@
-#!/bin/sh
-export ACTION=add
-#export ACTION=remove
-export DEVPATH=/devices/pci0/00:09.0/usb1/1-1/1-1.1/ttyUSB7
-export DEVPATH=/class/tty/ttyUSB0
-#export DEVPATH=/block/hda
+#! /bin/sh
+#
+# test.tty - run udev(8) on each tty device in /sys/class/tty
+SYSFSDIR=/sys # change this for a nonstand sysfs mount point
+BIN=./udev # location of your udev binary
+export ACTION=add # 'add' or 'remove'
-#./udev block
-./udev tty
+for i in ${SYSFSDIR}/class/tty/*; do
+ export DEVPATH="/"`echo $i | cut --delimiter='/' --fields=3-`
+ $BIN tty
+done