diff options
author | Steven Barth <steven@midlink.org> | 2008-08-09 00:42:35 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-09 00:42:35 +0000 |
commit | d1998ce92433d5be73ce9895b2b772dbec3f4c1d (patch) | |
tree | 7f98daaa6ac5ffdfb2a5b4a87ccf56b60a67ef2c /modules/admin-full/luasrc/controller/admin/system.lua | |
parent | db8e5858bfd7d5cae17949a977f87289f5b9ac29 (diff) |
Added missing dependency which broke LuCI
Removed unneeded Broadcom sanity check
Diffstat (limited to 'modules/admin-full/luasrc/controller/admin/system.lua')
-rw-r--r-- | modules/admin-full/luasrc/controller/admin/system.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/admin-full/luasrc/controller/admin/system.lua b/modules/admin-full/luasrc/controller/admin/system.lua index 3ebaebcee..fec652699 100644 --- a/modules/admin-full/luasrc/controller/admin/system.lua +++ b/modules/admin-full/luasrc/controller/admin/system.lua @@ -243,10 +243,9 @@ function action_upgrade() local ret = nil local plat = luci.fs.mtime("/lib/upgrade/platform.sh") - local broadcom = os.execute('grep brcm_ /lib/upgrade/platform.sh >/dev/null 2>&1') == 0 local tmpfile = "/tmp/firmware.img" - local keep_avail = not broadcom + local keep_avail = true local file luci.http.setfilehandler( |