From 9ce58c0339f2b570c049c7bee04af66c3d695a39 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sat, 6 Sep 2008 15:15:38 +0000 Subject: Made flashing more responsive as well --- modules/admin-full/luasrc/controller/admin/system.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'modules/admin-full/luasrc/controller/admin/system.lua') diff --git a/modules/admin-full/luasrc/controller/admin/system.lua b/modules/admin-full/luasrc/controller/admin/system.lua index 6cf951a154..bbe202d9d3 100644 --- a/modules/admin-full/luasrc/controller/admin/system.lua +++ b/modules/admin-full/luasrc/controller/admin/system.lua @@ -182,7 +182,7 @@ end function action_upgrade() require("luci.model.uci") - local ret = nil + local ret local plat = luci.fs.mtime("/lib/upgrade/platform.sh") local tmpfile = "/tmp/firmware.img" local broadcom = os.execute('grep brcm_ /lib/upgrade/platform.sh >/dev/null 2>&1') == 0 @@ -208,7 +208,9 @@ function action_upgrade() local keepcfg = keep_avail and luci.http.formvalue("keepcfg") if plat and fname then - ret = luci.sys.flash(tmpfile, keepcfg and _keep_pattern()) + ret = function() + return luci.sys.flash(tmpfile, keepcfg and _keep_pattern()) + end end luci.template.render("admin_system/upgrade", {sysupgrade=plat, ret=ret, keep_avail=keep_avail}) -- cgit v1.2.3