%#
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.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
$Id$
-%>
<%+header%>
Firmware aktualisieren
<% if step == 1 then %>
<% if supported then %>
<% else %>
Auf diesem Gerät kann kein Upgrade durchgeführt werden.
Bitte führe das Upgrade manuell durch.
<% end %>
<% elseif step == 2 then %>
Die Firmwaredatei wurde übermittelt. Bitte vergleiche MD5-Checksumme
und Dateigröße und klicke anschließend auf "Fortfahren".
<% if flashsize > 0 and filesize > flashsize then %>
Die Firmware passt nicht in den Speicher des Gerätes.
<% end %>
- md5sum:
<%=checksum%>
- Größe: <%
function byte_format(byte)
local suff = {"B", "KB", "MB", "GB", "TB"}
for i=1, 5 do
if byte > 1024 and i < 5 then
byte = byte / 1024
else
return string.format("%.2f %s", byte, suff[i])
end
end
end
write(byte_format(filesize))
if flashsize > 0 then
write(luci.i18n.translatef(
" (%s available)",
w.byte_format(flashsize)
))
end
%>
<% elseif step == 3 then %>
Die Firmware wird jetzt aktualisiert.
UNTERBRICH AUF KEINEN FALL DIE STROMVERSORGUNG!
Dieser Vorgang wird einige Minuten dauern. Anschließend startet
das Gerät automatisch neu.
<% end %>
<%+footer%>