From 07a9df2952673f36ed1f57485d9614539532e28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Mon, 8 Jun 2026 12:27:55 +0200 Subject: [PATCH] in serial boot mode, keep tty0 active --- cmd/dkl-local-server/ws-host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dkl-local-server/ws-host.go b/cmd/dkl-local-server/ws-host.go index d428a6f..86e9dca 100644 --- a/cmd/dkl-local-server/ws-host.go +++ b/cmd/dkl-local-server/ws-host.go @@ -206,7 +206,7 @@ func renderHost(w http.ResponseWriter, r *http.Request, what string, host *local if cmdline != "" { cmdline += " " } - cmdline += "console=ttyS" + s + ",115200" + cmdline += "console=tty0 console=ttyS" + s + ",115200" } _, uki := r.Form["uki"]