base-files: suppress error messages in usb-storage script
SVN-Revision: 9498
This commit is contained in:
parent
61f3913d85
commit
5fb714cca9
1 changed files with 8 additions and 8 deletions
|
@ -1,21 +1,21 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2007 OpenWrt.org
|
||||
|
||||
logger "usb device is mass storage"
|
||||
i=0
|
||||
i=0
|
||||
while [ $i -le 10 ]; do
|
||||
logger "waiting on usb drive $i ..."
|
||||
logger "waiting on usb drive $i ..."
|
||||
i=$(($i+1))
|
||||
cd /sys${DEVPATH}
|
||||
for blk in `find host* -type d`; do
|
||||
for blk in `find host* -type d 2>/dev/null`; do
|
||||
cd /sys/${DEVPATH}/${blk}
|
||||
BLK=$(find block* -type l 2> /dev/null)
|
||||
BLK=$(find block* -type l 2>/dev/null)
|
||||
[ -n "${BLK}" ] && {
|
||||
cd /sys${DEVPATH}/${blk}/${BLK}
|
||||
ls /dev/ > /tmp/d
|
||||
sleep 2
|
||||
for node in `find sd* -type d | grep -v "/"`; do
|
||||
for node in `find sd* -type d 2>/dev/null| grep -v "/"`; do
|
||||
echo "mounting /dev/${node} on /mnt/usbdrive"
|
||||
mkdir -p /mnt/usbdrive
|
||||
mount /dev/${node} /mnt/usbdrive
|
||||
|
@ -24,5 +24,5 @@ while [ $i -le 10 ]; do
|
|||
}
|
||||
done
|
||||
sleep 1
|
||||
done
|
||||
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in a new issue