diff options
author | Kay Sievers <kay.sievers@suse.de> | 2005-11-10 01:50:06 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2005-11-10 01:50:06 +0100 |
commit | 53899a171ea862124b49c75b7511b7eb30742ef9 (patch) | |
tree | 6552376fba823d79c2f84c9a38b67244b9ed2437 /test/show_all_devices.sh | |
parent | f5f8f316aa66251d0ccf71b940182a9d00dbd040 (diff) |
fix tests and remove no longer useful stuff
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'test/show_all_devices.sh')
-rwxr-xr-x | test/show_all_devices.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/test/show_all_devices.sh b/test/show_all_devices.sh deleted file mode 100755 index 921b8e6163..0000000000 --- a/test/show_all_devices.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/bash -# -# Directory where sysfs is mounted -SYSFS_DIR=/sys - -# handle block devices and their partitions -for i in ${SYSFS_DIR}/block/*; do - # each drive - echo ${i#${SYSFS_DIR}/block/} - - # each partition, on each device - for j in $i/*; do - if [ -f $j/dev ]; then - echo ${j#${SYSFS_DIR}} | cut --delimiter='/' --fields=4- - fi - done -done - -# all other device classes -for i in ${SYSFS_DIR}/class/*; do - for j in $i/*; do - if [ -f $j/dev ]; then - echo ${j#${SYSFS_DIR}} | cut --delimiter='/' --fields=4- - fi - done -done - |