From 2c1b320b0a2df58afe385d87dabe06c45124ffca Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Mon, 20 Jul 2026 08:33:28 -0400 Subject: [PATCH] fix(web): stop QEMU serial stdin from triggering browser input prompts --- web/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app.js b/web/app.js index 003f594..1823952 100644 --- a/web/app.js +++ b/web/app.js @@ -202,6 +202,7 @@ async function boot(file, variant, setStatus) { mainScriptUrlOrBlob: qemuUrl.href, print: message => { console.log(message); logLine(message); }, printErr: message => { console.error(message); logLine(message); }, + stdin: () => null, }; options.preRun = [() => { options.FS.mkdir('/bios');