Kernel: Print commandline after initializing it

This commit is contained in:
Liav A 2021-05-21 20:12:29 +03:00 committed by Linus Groh
commit df84fdfd2c
Notes: sideshowbarker 2024-07-18 17:35:48 +09:00

View file

@ -34,6 +34,7 @@ UNMAP_AFTER_INIT void CommandLine::initialize()
{ {
VERIFY(!s_the); VERIFY(!s_the);
s_the = new CommandLine(s_cmd_line); s_the = new CommandLine(s_cmd_line);
dmesgln("Kernel Commandline: {}", kernel_command_line().string());
} }
UNMAP_AFTER_INIT CommandLine::CommandLine(const String& string) UNMAP_AFTER_INIT CommandLine::CommandLine(const String& string)