-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
serial.js
executable file
·54 lines (44 loc) · 1.5 KB
/
serial.js
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env node
"use strict";
const TEST_RELEASE_BUILD = +process.env.TEST_RELEASE_BUILD;
const assert = require("assert").strict;
const fs = require("fs");
const crypto = require("crypto");
var V86 = require(`../../build/${TEST_RELEASE_BUILD ? "libv86" : "libv86-debug"}.js`).V86;
process.on("unhandledRejection", exn => { throw exn; });
const config = {
bios: { url: __dirname + "/../../bios/seabios.bin" },
vga_bios: { url: __dirname + "/../../bios/vgabios.bin" },
cdrom: { url: __dirname + "/../../images/linux.iso" },
network_relay_url: "<UNUSED>",
autostart: true,
memory_size: 32 * 1024 * 1024,
filesystem: {},
log_level: 0,
disable_jit: +process.env.DISABLE_JIT,
};
const emulator = new V86(config);
let serial_data = [];
setTimeout(async () =>
{
await emulator.wait_until_vga_screen_contains("/root% ");
console.log("Booted, sending file to ttyS0");
emulator.keyboard_send_text("cat /bin/busybox > /dev/ttyS0\n");
}, 1000);
const timeout = setTimeout(() => {
console.log(serial_data);
throw new Error("Timeout");
}, 60 * 1000);
emulator.add_listener("serial0-output-byte", function(byte)
{
serial_data.push(byte);
if(serial_data.length === 510277)
{
const hash = crypto.createHash("sha256");
hash.update(new Uint8Array(serial_data));
assert("da1fb5b421123c58080a59832675632505b8c139a8d7ecd1c31591ca5c65cea6" === hash.digest("hex"));
console.log("ok");
clearTimeout(timeout);
emulator.stop();
}
});