projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fixes usb storage mounting
[openwrt.git]
/
package
/
base-files
/
files
/
sbin
/
usb-storage
diff --git
a/package/base-files/files/sbin/usb-storage
b/package/base-files/files/sbin/usb-storage
index
51e704f
..
6c32de8
100755
(executable)
--- a/
package/base-files/files/sbin/usb-storage
+++ b/
package/base-files/files/sbin/usb-storage
@@
-10,7
+10,7
@@
while [ $i -le 10 ]; do
cd /sys${DEVPATH}
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
d
2>/dev/null)
[ -n "${BLK}" ] && {
cd /sys${DEVPATH}/${blk}/${BLK}
ls /dev/ > /tmp/d
This page took
0.019816 seconds
and
4
git commands to generate.