From df84fdfd2ca8cf5ef2f6c93c3b84b919508211ff Mon Sep 17 00:00:00 2001 From: Liav A Date: Fri, 21 May 2021 20:12:29 +0300 Subject: [PATCH] Kernel: Print commandline after initializing it --- Kernel/CommandLine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/CommandLine.cpp b/Kernel/CommandLine.cpp index 37765fbe23..2fdad516a1 100644 --- a/Kernel/CommandLine.cpp +++ b/Kernel/CommandLine.cpp @@ -34,6 +34,7 @@ UNMAP_AFTER_INIT void CommandLine::initialize() { VERIFY(!s_the); s_the = new CommandLine(s_cmd_line); + dmesgln("Kernel Commandline: {}", kernel_command_line().string()); } UNMAP_AFTER_INIT CommandLine::CommandLine(const String& string)