02f7c5aad9
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@449 2a923420-c742-0410-a762-8d5b09965624
37 lines
567 B
Plaintext
Executable File
37 lines
567 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/var/mongoose/lib/setup
|
|
require pkg.class chunked
|
|
|
|
cgi_input
|
|
#cgi_dump
|
|
|
|
set cmd [cgi_get cmd update]
|
|
|
|
proc opkg {cmd} {
|
|
chunk ">>> opkg $cmd\r\n"
|
|
set bcmd "|/mod/var/mongoose/lib/opkg $cmd"
|
|
set fd [open $bcmd r]
|
|
while {[gets $fd line] >= 0} {
|
|
chunk "$line\r\n"
|
|
#chunk_pad
|
|
}
|
|
close $fd
|
|
chunk "\r\n"
|
|
}
|
|
|
|
start_chunked
|
|
|
|
if {$cmd eq "upgrade"} { opkg update }
|
|
opkg $cmd
|
|
|
|
if {$cmd eq "update" || $cmd eq "upgrade"} {
|
|
chunk "Updating package meta information\r\n"
|
|
pkg fetchmeta
|
|
chunk "Done.\r\n"
|
|
}
|
|
|
|
end_chunked
|
|
|