From: colby@colbyt.com
To: Alyssa Ross <hi@alyssa.is>
Cc: devel@spectrum-os.org
Subject: [PATCH v5] installer: suppress boot console status noise
Date: Sat, 01 Aug 2026 22:16:58 +0000 [thread overview]
Message-ID: <Gu4Upi6oDGJ0PsVgGRFA_1Qml4-jzoBBIuVI0liv-0FmPQhJ4RTUshx2F_mVYTGTK3-zEtpe-36jL_NtX7G49rE6mfpQnEw5hBI2R69_nh0=@colbyt.com> (raw)
In-Reply-To: <874ihf2pa0.fsf@alyssa.is>
Add quiet to the installer's kernel parameters. Frame captures of the virtual console show it is the only addition needed: it raises the kernel console threshold above the KERN_INFO boot chatter, silences the stage-1 script, and holds systemd status output to errors only, so a normal boot paints nothing while errors still reach the screen.
Signed-off-by: Colby Thomson <colby@colbyt.com>
---
v5: standalone commit message and sign-off
systemd.show_status=false is unecessary. Quiet already implies errors-only status, and a new test boot (quiet alone, plymouth disabled) paints the same all-black frames as the old quiet+show_status=false control until the installer UI appears — so it bought nothing and would have hidden errors. The status text that motivated it was entirely the plymouth details-mode fallback, which overrides the setting anyway; agreed that waits for installing from Spectrum.
release/installer/configuration.nix | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/release/installer/configuration.nix b/release/installer/configuration.nix
index 3f9ef247..b41c2d88 100644
--- a/release/installer/configuration.nix
+++ b/release/installer/configuration.nix
@@ -11,7 +11,9 @@ in
imports = [ (modulesPath + "/profiles/all-hardware.nix") ];
boot.consoleLogLevel = lib.mkDefault 2;
- boot.kernelParams = [ "udev.log_priority=5" ];
+ # quiet keeps KERN_INFO boot chatter and the stage-1 script off the video
+ # console, and holds systemd status output to errors only.
+ boot.kernelParams = [ "udev.log_priority=5" "quiet" ];
boot.initrd.verbose = false;
boot.kernelPackages = pkgs.linuxPackages_latest;
--
2.55.0
next prev parent reply other threads:[~2026-08-01 22:17 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-25 17:48 [PATCH 0/6] cloud-hypervisor v52 and VM runtime fixes colbyt
2026-06-25 17:48 ` [PATCH 1/6] pkgs/skaware: vendor backported patches colbyt
2026-06-26 13:39 ` Alyssa Ross
2026-06-25 17:48 ` [PATCH 2/6] pkgs/cloud-hypervisor: update GPU patchset to v52 colbyt
2026-06-26 14:06 ` Alyssa Ross
2026-06-25 17:48 ` [PATCH 3/6] vm: use vhost-user networking for crosvm colbyt
2026-06-26 14:45 ` Alyssa Ross
2026-07-02 9:07 ` Alyssa Ross
2026-06-25 17:48 ` [PATCH 4/6] Documentation: use crosvm GPU socket-path option colbyt
2026-06-26 14:18 ` Alyssa Ross
2026-06-25 17:48 ` [PATCH 5/6] installer: suppress boot console status noise colbyt
2026-06-26 14:46 ` Alyssa Ross
2026-06-26 19:09 ` colby
2026-07-02 11:44 ` Alyssa Ross
2026-07-30 19:20 ` [PATCH v2] " colbyt
2026-07-30 19:28 ` [PATCH v3] " colbyt
2026-07-30 19:35 ` [PATCH v4] " colbyt
2026-07-31 14:43 ` Alyssa Ross
2026-08-01 22:16 ` colby [this message]
2026-08-03 12:53 ` [PATCH v5] " Alyssa Ross
2026-06-25 17:48 ` [PATCH 6/6] start-vmm: test GPU socket configuration colbyt
2026-06-26 14:18 ` Alyssa Ross
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='Gu4Upi6oDGJ0PsVgGRFA_1Qml4-jzoBBIuVI0liv-0FmPQhJ4RTUshx2F_mVYTGTK3-zEtpe-36jL_NtX7G49rE6mfpQnEw5hBI2R69_nh0=@colbyt.com' \
--to=colby@colbyt.com \
--cc=devel@spectrum-os.org \
--cc=hi@alyssa.is \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://spectrum-os.org/git/doc
https://spectrum-os.org/git/mktuntap
https://spectrum-os.org/git/spectrum
https://spectrum-os.org/git/ucspi-vsock
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).