Files
bl-mt798x/uboot-mtk-20220606/failsafe/fsdata/booting.html
zerowrt-bot 6bc682795c u-boot: translate Web UI to Chinese
Translate Web UI pages to Chinese for better usability.
2026-03-10 16:47:51 +08:00

50 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>正在启动 initramfs</title>
<link rel="stylesheet" href="/style.css">
<script src="/index.js"></script>
<script>
function init() {
getversion();
ajax({
url: '/result',
done: function(response) {
if (response == 'failed') {
location = '/fail.html'
return
}
document.getElementById('title').innerHTML = '启动成功'
document.getElementById('info').innerHTML = '您的设备已成功进入 initramfs'
},
timeout: 30000
})
ajax('/result', function(response) {
if (response == 'failed') {
location = '/fail.html'
return
}
document.getElementById('title').innerHTML = '启动成功'
document.getElementById('info').innerHTML = '您的设备已成功进入 initramfs'
}, 30000)
}
</script>
</head>
<body onload="init()">
<div id="m">
<h1 id="title">正在启动 initramfs</h1>
<p id="info">
您的文件已成功上传!正在启动,请稍候...<br>
此页面可能在短时间内无响应.
</p>
<div id="l"></div>
</div>
<div id="version"></div>
</body>
</html>