fix(sprout): make secure boot warning more specific

This commit is contained in:
2025-11-03 15:31:44 -05:00
parent 34ac57d291
commit 48497700d8

View File

@@ -88,7 +88,7 @@ const DELAY_ON_ERROR: Duration = Duration::from_secs(10);
fn run() -> Result<()> { fn run() -> Result<()> {
// For safety reasons, we will note that Secure Boot is in beta on Sprout. // For safety reasons, we will note that Secure Boot is in beta on Sprout.
if SecureBoot::enabled().context("unable to determine Secure Boot status")? { 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. // Start the platform timer.