From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from atuin.qyliss.net (localhost [IPv6:::1]) by atuin.qyliss.net (Postfix) with ESMTP id 55A6DA36A; Thu, 25 Jun 2026 17:49:40 +0000 (UTC) Received: by atuin.qyliss.net (Postfix, from userid 993) id C897AA312; Thu, 25 Jun 2026 17:49:37 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-26) on atuin.qyliss.net X-Spam-Level: X-Spam-Status: No, score=-0.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DMARC_PASS,SPF_HELO_PASS autolearn=unavailable autolearn_force=no version=4.0.1 Received: from mail-43171.protonmail.ch (mail-43171.protonmail.ch [185.70.43.171]) by atuin.qyliss.net (Postfix) with ESMTPS id EAF6FA1E4 for ; Thu, 25 Jun 2026 17:49:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=colbyt.com; s=protonmail; t=1782409775; x=1782668975; bh=mRx8Dv1UZNcu8eCTVFwpX/vNJXBOwLbBV9eTTDyX/V0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=Ay7usL89wrFJ89sfAw55KMxpgJsVyliCoTM0/qEvi3hxUdK1SfZ7vrsGifK8X579X TAkV8xAToYJ8rWLl6nqqAAk1v1O1hYRthEhVayahr2SNh5kCfRnqny+hXICy/3/Ujz AdPX+kZIcQd9sE586jKTFHkHpjXS5ZMLcyC7Lz4SyYFhXkPzdiwVMYj29A1KpVHMNW SnbxQUMob+IU8oUU+YaArzTiY1b0lFXHyMIWut7B3ieQIfwf0zi3aIGxJxqGr8xbLz 7QmOC5v+Bu4FTuIX0/eCUpRLCpeabaxjPhYe61MwzN0uc2Wa6QW/gHosMjrdqVBkv6 RAYlCydpYqWYA== X-Pm-Submission-Id: 4gmRC12cRwz1DDrD From: colbyt To: devel@spectrum-os.org Subject: [PATCH 5/6] installer: suppress boot console status noise Date: Thu, 25 Jun 2026 10:48:48 -0700 Message-ID: <528a34214942d7b316fde5510da03ef91eb9d2cd.1782409229.git.colby@colbyt.com> X-Mailer: git-send-email 2.54.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: NNSO66IROMKTRGAPHVJUSBKYPEI65OGJ X-Message-ID-Hash: NNSO66IROMKTRGAPHVJUSBKYPEI65OGJ X-MailFrom: colby@colbyt.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; header-match-devel.spectrum-os.org-0; header-match-devel.spectrum-os.org-1; header-match-devel.spectrum-os.org-2; header-match-devel.spectrum-os.org-3; header-match-devel.spectrum-os.org-4; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: colbyt X-Mailman-Version: 3.3.10 Precedence: list List-Id: Patches and low-level development discussion Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The installer can show systemd or udev messages between Plymouth exiting and cage starting, which breaks the intended flicker-free graphical handoff. Add quiet/systemd/udev kernel parameters to suppress status output and stop forcing systemd.journald.forward_to_console in the QEMU runner. This keeps the installer VM aligned with the quiet graphical boot path. Signed-off-by: colbyt --- release/installer/configuration.nix | 9 ++++++++- release/installer/run-vm.nix | 5 +---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/release/installer/configuration.nix b/release/installer/configuration.nix index 3f9ef24..daaf5b7 100644 --- a/release/installer/configuration.nix +++ b/release/installer/configuration.nix @@ -11,7 +11,14 @@ in imports = [ (modulesPath + "/profiles/all-hardware.nix") ]; boot.consoleLogLevel = lib.mkDefault 2; - boot.kernelParams = [ "udev.log_priority=5" ]; + boot.kernelParams = [ + "quiet" + "loglevel=3" + "systemd.show_status=false" + "rd.systemd.show_status=false" + "udev.log_level=3" + "rd.udev.log_level=3" + ]; boot.initrd.verbose = false; boot.kernelPackages = pkgs.linuxPackages_latest; diff --git a/release/installer/run-vm.nix b/release/installer/run-vm.nix index b9907f7..6639c8b 100644 --- a/release/installer/run-vm.nix +++ b/release/installer/run-vm.nix @@ -40,8 +40,5 @@ writeShellScript "run-spectrum-installer-vm.sh" '' -drive file=/proc/self/fd/3,format=raw,if=virtio \ -kernel ${installer.kernel} \ -initrd ${installer.initramfs} \ - -append ${escapeShellArg (toString [ - installer.kernelParams - "systemd.journald.forward_to_console" - ])} + -append ${escapeShellArg installer.kernelParams} '') (_: {}) -- 2.54.0