From 48497700d8cbf40574e45db4550f4ab6d822b100 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Mon, 3 Nov 2025 15:31:44 -0500 Subject: [PATCH] fix(sprout): make secure boot warning more specific --- crates/sprout/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sprout/src/main.rs b/crates/sprout/src/main.rs index 29d5718..fafc4bd 100644 --- a/crates/sprout/src/main.rs +++ b/crates/sprout/src/main.rs @@ -88,7 +88,7 @@ const DELAY_ON_ERROR: Duration = Duration::from_secs(10); fn run() -> Result<()> { // For safety reasons, we will note that Secure Boot is in beta on Sprout. if SecureBoot::enabled().context("unable to determine Secure Boot status")? { - warn!("Secure Boot is enabled. Sprout Secure Boot is in beta."); + warn!("Sprout Secure Boot is in beta. Some functionality may not work as expected."); } // Start the platform timer.