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.
This commit is contained in:
Cloudwalk9
2025-11-22 16:48:45 -05:00
committed by GitHub
parent 6bdc5fe403
commit ea8cb7381d

View File

@@ -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();
}