From ea8cb7381d509d371d6bcedc2cb8d8341dc87c00 Mon Sep 17 00:00:00 2001 From: Cloudwalk9 Date: Sat, 22 Nov 2025 16:48:45 -0500 Subject: [PATCH] main: change panic message to match Linux It is imperative for true Linux compatibility and for all of its quirkiness, that the kernel duly notify the user on fatal error conditions within the kernel that it is most definitely NOT SYNCING. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7ff143c..e560b4d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,7 +44,7 @@ fn on_panic(info: &PanicInfo) -> ! { let panic_msg = info.message(); - error!("Kernel Panic: {panic_msg}"); + error!("Kernel panic - not syncing: {panic_msg}"); ArchImpl::halt(); }