blob: 0cd83559d31e7d13d6dde458cf2bd7c6c15d3e4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Update failed</title>
<link rel="icon" href="data:,">
</head>
<body>
<div id="m">
<h1 class="red">Update failed</h1>
<p>Please click on refresh button of your browser to go back to the upload page.<br>Check U-Boot console for any errors.</p>
</div>
<script>
if ( window.history.replaceState ) {
window.history.replaceState( null, null, window.location.href );
}
function checkEvt(){
var evTypep=window.performance.getEntriesByType("navigation")[0].type;
if (evTypep=='reload'){
window.location.replace("index.html");
}
}
checkEvt();
</script>
</body>
</html>
|