2022-08-15 20:00:40 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2022-08-17 09:04:10 +02:00
|
|
|
<title>IA64 booting</title>
|
2022-08-15 20:00:40 +02:00
|
|
|
<script src="../dist/tuicss.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="../dist/tuicss.min.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="black">
|
|
|
|
<div class="tui-screen black white-text" style="padding: 2px" width="100%" height="100%">
|
|
|
|
<img src="./resources/pcstartup1.png" width="40px" height="40px" style="float: left" />
|
|
|
|
<img src="./resources/pcstartup2.png" width="200px" height="150px" style="float: right" />
|
|
|
|
<div style="margin-top: 4px"></div>
|
|
|
|
Award Medallion BIOS v6.0, An Energy Star Ally<br>
|
|
|
|
Copyright (C) 1984-2001, Award Software, Inc.<br><br>
|
|
|
|
ASUS P4T533-C ACPI BIOS Revision 1007 Beta 001<br><br>
|
|
|
|
Intel(R) Pentium(R) 4 2800 MHz Processor<br>
|
|
|
|
Memory Test : 262144K OK<br><br>
|
|
|
|
<div id="session-1" style="display: none">
|
|
|
|
Award Plug and Play BIOS Extension v1.0A<br>
|
|
|
|
Initialize Plug and Play Cards...<br>
|
|
|
|
PNP init Completed<br><br>
|
|
|
|
</div>
|
|
|
|
<div id="session-2" style="display: none">
|
|
|
|
Detecting Primary Master .....: MAXTOR 6L040J2<br>
|
|
|
|
</div>
|
|
|
|
<div id="session-3" style="display: none">
|
|
|
|
Detecting Primary Slave ......: ASUS CD-S520/A<br>
|
|
|
|
</div>
|
|
|
|
<div id="session-4" style="display: none">
|
|
|
|
Detecting Secondary Master ...: Skip<br>
|
|
|
|
Detecting Secondaty Slave ....: None
|
|
|
|
</div>
|
|
|
|
<div id="session-5" style="display: none">
|
2022-08-17 09:04:10 +02:00
|
|
|
<br>Stage 1: IA64 bootloader found, Booting...
|
2022-08-15 20:00:40 +02:00
|
|
|
</div>
|
|
|
|
<div id="session-6" style="display: none">
|
|
|
|
<br>Stage 2: Loading all libraries...
|
|
|
|
</div>
|
|
|
|
<div id="session-7" style="display: none">
|
2022-08-17 09:04:10 +02:00
|
|
|
<br>Start IA64 GUI !
|
2022-08-15 20:00:40 +02:00
|
|
|
</div>
|
|
|
|
<div class="tui-statusbar absolute black white-text">
|
|
|
|
<ul>
|
|
|
|
<li style="margin-left: 0px">Press <b>DEL</b> to enter SETUP, <b>Alt+F2</b> to enter EZ flash utility
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<ul>
|
|
|
|
<li style="margin-left: 0px">08/20/2002-1850E/ICH2/W627-P4T533-C</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
window.onload = function() {
|
|
|
|
setTimeout(function() { showSession("session-1"); }, 300);
|
|
|
|
setTimeout(function() { showSession("session-2"); }, 400);
|
|
|
|
setTimeout(function() { showSession("session-3"); }, 450);
|
|
|
|
setTimeout(function() { showSession("session-4"); }, 870);
|
|
|
|
setTimeout(function() { showSession("session-5"); }, 1500);
|
|
|
|
setTimeout(function() { showSession("session-6"); }, 1900);
|
|
|
|
setTimeout(function() { showSession("session-7"); }, 2200);
|
2022-08-16 20:06:18 +02:00
|
|
|
setTimeout(function() { location.href="/splash.html" }, 2500);
|
2022-08-15 20:00:40 +02:00
|
|
|
};
|
|
|
|
function showSession(id) {
|
|
|
|
const session = document.getElementById(id);
|
|
|
|
session.style.display = "block";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</html>
|