This commit is contained in:
copy 2017-03-04 16:06:23 -05:00
parent 9642047964
commit 0fbb7687cf
3 changed files with 29 additions and 8 deletions

View file

@ -10,6 +10,10 @@
<div>
<div id="boot_options">
<h4>Debugger</h4>
<input type="button" value="React OS" id="start_reactos">
<input type="button" value="Windows ME" id="start_windowsme">
<input type="button" value="Windows 95" id="start_windows95">
<input type="button" value="FreeBSD" id="start_freebsd">
<input type="button" value="Windows 98" id="start_windows98">
<input type="button" value="Arch Linux" id="start_archlinux">
<input type="button" value="Oberon" id="start_oberon">

View file

@ -10,9 +10,11 @@
<div>
<div id="boot_options">
<h4>Quickstart</h4>
<input type="button" value="Windows 95 (12.0 MB)" id="start_windows95">
<input type="button" value="React OS (32 MB)" id="start_reactos">
- Restored from snapshot<br>
<input type="button" value="FreeBSD (13.0 MB)" id="start_freebsd">
<input type="button" value="Windows 95 (6.7 MB)" id="start_windows95">
- Restored from snapshot<br>
<input type="button" value="FreeBSD 10.2 (13.0 MB)" id="start_freebsd">
- Restored from snapshot<br>
<input type="button" value="Oberon (16.0 MB)" id="start_oberon">
- Native Oberon 2.3.6 (<a href="https://lists.inf.ethz.ch/pipermail/oberon/2013/006844.html">via</a>)<br>
@ -24,7 +26,7 @@
- Graphical OS, takes about 60 seconds to boot<br>
<input type="button" value="Linux 2.6 (5.4 MB)" id="start_linux26">
- With busybox, Lua interpreter and test cases, takes about 20 seconds to boot<br>
<input type="button" value="Linux 3.18 (7.4 MB)" id="start_linux3">
<input type="button" value="Linux 3.18 (8.3 MB)" id="start_linux3">
- With internet access, telnet, ping, wget and links. Takes about 60 seconds to boot. Run <code>udhcpc</code> for networking. Exchange files through <code>/mnt/</code>.<br>
<input type="button" value="Windows 1.01 (1.4 MB)" id="start_windows1">
- Takes 1 second to boot<br>

View file

@ -206,7 +206,7 @@
id: "archlinux",
state: {
"url": HOST + "images/v86state.bin",
"size": 142924774,
"size": 142770440,
},
name: "Arch Linux",
memory_size: 128 * 1024 * 1024,
@ -222,7 +222,7 @@
filesystem: {
"basefs": {
"url": HOST + "images/fs.json",
"size": 7510249
"size": 10232633,
},
"baseurl": HOST + "arch/",
},
@ -267,7 +267,7 @@
id: "linux3",
cdrom: {
"url": HOST + "images/linux3.iso",
"size": 10000384,
"size": 8624128,
},
name: "Linux",
filesystem: {},
@ -333,7 +333,7 @@
boot_order: 0x132,
state: {
"url": HOST + "images/windows98_state.bin",
"size": 75760000,
"size": 42151380,
},
},
{
@ -341,12 +341,14 @@
memory_size: 64 * 1024 * 1024,
hda: {
"url": HOST + "images/W95.IMG",
"size": 242049024,
"async": true,
},
name: "Windows 95",
boot_order: 0x132,
state: {
"url": HOST + "images/windows95_state.bin",
"size": 42151328,
},
},
{
@ -354,7 +356,7 @@
memory_size: 128 * 1024 * 1024,
state: {
"url": HOST + "images/freebsd_state.bin",
"size": 142924774,
"size": 142815304,
},
hda: {
"url": ON_LOCALHOST ? "../v86-images/os/freebsd3.img" :
@ -364,6 +366,19 @@
},
name: "FreeBSD",
},
{
id: "reactos",
memory_size: 128 * 1024 * 1024,
cdrom: {
"url": "images/livecd-73402-rel.iso",
"async": true,
},
state: {
"url": "images/reactos_state.bin",
"size": 33527772,
},
name: "React OS",
},
];
var query_args = get_query_arguments();