diff options
author | rml@mvista.com <rml@mvista.com> | 2003-10-17 23:54:14 -0700 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:01:41 -0700 |
commit | 5892ceb540405861e51db3832d4f5cbab123056f (patch) | |
tree | e3ff5f1b8bdd65ed08d5b8567e1c2f63516ebcf4 /test.block | |
parent | 577aade748378e9b01d50d6ceb93c9c949d24228 (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.block')
-rw-r--r-- | test.block | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/test.block b/test.block index f12c6f735c..f6011a2221 100644 --- a/test.block +++ b/test.block @@ -1,10 +1,12 @@ -#!/bin/sh -export ACTION=add -#export ACTION=remove +#! /bin/sh +# +# test.block - run udev(8) on each block device in /sys/block -export DEVPATH=/block/hda -export DEVPATH=/block/sda/sda1 -#export DEVPATH=/block/sda +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 +for i in ${SYSFSDIR}/block/*; do + export DEVPATH="/"`echo $i | cut --delimiter='/' --fields=3-` + $BIN block +done |