From: Jo-Philipp Wich Date: Sat, 9 May 2009 02:26:13 +0000 (+0000) Subject: modules/admin-full: fixes for upgrade pages: X-Git-Tag: 0.9.0~478 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=fd31bb2fcc2f0ee8d2b2684756443e17be3d4a38 modules/admin-full: fixes for upgrade pages: - do not show a size warning if media size is unknown - handle unsupported platforms gracefully - i18n tag cleanup --- diff --git a/modules/admin-full/luasrc/controller/admin/system.lua b/modules/admin-full/luasrc/controller/admin/system.lua index 603103499..c7bf8370c 100644 --- a/modules/admin-full/luasrc/controller/admin/system.lua +++ b/modules/admin-full/luasrc/controller/admin/system.lua @@ -2,6 +2,7 @@ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth +Copyright 2008-2009 Jo-Philipp Wich Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -278,7 +279,8 @@ function action_upgrade() luci.template.render("admin_system/upgrade", { step=1, bad_image=(has_image and not has_support or false), - keepavail=keep_avail + keepavail=keep_avail, + supported=has_platform } ) -- Step 2: present uploaded file, show checksum, confirmation diff --git a/modules/admin-full/luasrc/view/admin_system/upgrade.htm b/modules/admin-full/luasrc/view/admin_system/upgrade.htm index b4c9d1241..ae38cce91 100644 --- a/modules/admin-full/luasrc/view/admin_system/upgrade.htm +++ b/modules/admin-full/luasrc/view/admin_system/upgrade.htm @@ -16,12 +16,13 @@ $Id$ <%+header%>

<%:system%>

-

<%:a_s_flash%>

+

<%:admin_upgrade Flash Firmware%>

<% if step == 1 then %> + <% if supported then %>

- <%:admin_upgrade Upload an OpenWrt image file to reflash the device.%> + <%:admin_upgrade_desc Upload an OpenWrt image file to reflash the device.%> <% if bad_image then %>

<%:admin_upgrade_badimage The uploaded image file does not @@ -37,13 +38,18 @@ $Id$
<% if keepavail then -%> - <%:a_s_flash_keepcfg%> + <%:admin_upgrade_keepcfg Keep configuration files%> <% end -%>
+ <% else %> +
<%:admin_upgrade_nosupport Sorry. + OpenWrt does not support a system upgrade on this platform.
+ You need to manually flash your device. %>
+ <% end %> <% elseif step == 2 then %>

<%:admin_upgrade_uploaded The flash image was uploaded. @@ -51,7 +57,7 @@ $Id$ compare them with the original file to ensure data integrity.
Click "Proceed" below to start the flash procedure. %> - <% if filesize > flashsize then %> + <% if flashsize > 0 and filesize > flashsize then %>

<%:admin_upgrade_toolarge It appears that you try to flash an image that does not fit in the flash memory, please verify