update for 0.76 glob fix

git-svn-id: file:///root/webif/svn/pkg/webif/trunk@2310 2a923420-c742-0410-a762-8d5b09965624
This commit is contained in:
hummypkg 2015-02-05 23:14:52 +00:00
parent 529fccd4fd
commit 05b8383fb3
1 changed files with 5 additions and 5 deletions

View File

@ -387,8 +387,6 @@ proc {system connectivity} {{site "hpkg.tv"} {port 80} {ret "0"}} {
return 0
}
}
set err UNKNOWN
return 0
}
proc {system strip} {str} {
@ -402,8 +400,10 @@ proc {system strip} {str} {
}
proc {system usbdisks} {{full 0}} {
set disks [glob -nocomplain \
-directory /sys/bus/usb/drivers/usb-storage *:*]
set disks [lmap i [glob -nocomplain \
-directory /sys/bus/usb/drivers/usb-storage *:*] {
file tail $i
}]
if {!$full} {
return [llength $disks]
}
@ -412,7 +412,7 @@ proc {system usbdisks} {{full 0}} {
# Build list of device to device ID
set map {}
foreach block [glob -nocomplain -directory /sys/block sd?] {
set link [file readlink /sys/block/$block/device]
set link [file readlink $block/device]
foreach disk $disks {
if {[string first "/$disk/" $link] >= 0} {
set map($block) $disk