upgrade.htm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <%#
  2. LuCI - Lua Configuration Interface
  3. Copyright 2008 Steven Barth <steven@midlink.org>
  4. Copyright 2008-2009 Jo-Philipp Wich <xm@subsignal.org>
  5. Licensed under the Apache License, Version 2.0 (the "License");
  6. you may not use this file except in compliance with the License.
  7. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. $Id$
  10. -%>
  11. <%+header%>
  12. <h2>Firmware aktualisieren</h2>
  13. <% if step == 1 then %>
  14. <% if supported then %>
  15. <form method="post" action="<%=REQUEST_URI%>" enctype="multipart/form-data">
  16. <p>
  17. Hier kannst du ein manuelles Firmwareupdate durchführen.
  18. </p>
  19. <% if bad_image then %>
  20. <p class="error">Die übermittelte Firmwaredatei kann nicht verwendet werden.</p>
  21. <% end %>
  22. <div>
  23. <h3>Firmware image</h3>
  24. <input type="hidden" name="step" value="2" />
  25. <input type="file" size="30" name="image" />
  26. <% if keepavail then -%>
  27. <br/>
  28. <input type="checkbox" name="keepcfg" value="1" checked="checked" />
  29. <label for="keepcfg">Einstellungen beibehalten</label>
  30. <% end -%>
  31. <div class="cbi-page-actions right">
  32. <input class="cbi-button cbi-button-apply" type="submit" value="Upload image" />
  33. </div>
  34. </div>
  35. </form>
  36. <% else %>
  37. <p class="error">Auf diesem Gerät kann kein Upgrade durchgeführt werden.
  38. Bitte führe das Upgrade manuell durch.</p>
  39. <% end %>
  40. <% elseif step == 2 then %>
  41. <p>
  42. Die Firmwaredatei wurde übermittelt. Bitte vergleiche MD5-Checksumme
  43. und Dateigröße und klicke anschließend auf "Fortfahren".
  44. </p>
  45. <% if flashsize > 0 and filesize > flashsize then %>
  46. <p class="error">Die Firmware passt nicht in den Speicher des Gerätes.</p>
  47. <% end %>
  48. <p>
  49. <ul>
  50. <li>md5sum: <code><%=checksum%></code></li>
  51. <li>Größe: <%
  52. function byte_format(byte)
  53. local suff = {"B", "KB", "MB", "GB", "TB"}
  54. for i=1, 5 do
  55. if byte > 1024 and i < 5 then
  56. byte = byte / 1024
  57. else
  58. return string.format("%.2f %s", byte, suff[i])
  59. end
  60. end
  61. end
  62. write(byte_format(filesize))
  63. if flashsize > 0 then
  64. write(luci.i18n.translatef(
  65. " (%s available)",
  66. w.byte_format(flashsize)
  67. ))
  68. end
  69. %></li>
  70. </ul>
  71. </p>
  72. <div class="cbi-page-actions right">
  73. <form style="display:inline">
  74. <input type="hidden" name="step" value="3" />
  75. <input type="hidden" name="keepcfg" value="<%=keepconfig and "1" or "0"%>" />
  76. <input class="cbi-button cbi-button-apply" type="submit" value="Fortfahren" />
  77. </form>
  78. <form style="display:inline">
  79. <input type="hidden" name="step" value="1" />
  80. <input type="hidden" name="keepcfg" value="<%=keepconfig and "1" or "0"%>" />
  81. <input class="cbi-button cbi-button-reset" type="submit" value="Abbrechen" />
  82. </form>
  83. </div>
  84. <% elseif step == 3 then %>
  85. <p>
  86. Die Firmware wird jetzt aktualisiert.
  87. <strong>UNTERBRICH AUF KEINEN FALL DIE STROMVERSORGUNG!</strong>
  88. Dieser Vorgang wird einige Minuten dauern. Anschließend startet
  89. das Gerät automatisch neu.
  90. </p>
  91. <% end %>
  92. <%+footer%>