From 0a296413e6be850a13045fc6f07efdc5459aa792 Mon Sep 17 00:00:00 2001 From: apio Date: Sun, 4 Dec 2022 15:55:12 +0100 Subject: [PATCH] It's not worth it aborting when failing to determine CPU name --- kernel/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/src/main.cpp b/kernel/src/main.cpp index 9c804132..2056716f 100644 --- a/kernel/src/main.cpp +++ b/kernel/src/main.cpp @@ -16,7 +16,7 @@ Result init() kinfoln("Current platform: %s", CPU::platform_string()); - kinfoln("Current processor: %s", TRY(CPU::identify())); + kinfoln("Current processor: %s", CPU::identify().value_or("(unknown)")); Timer::init();