summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-31 20:10:39 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-31 20:14:23 +0100
commitdec5683e9c5edd9259e2bcebc2b5804d1fdd4082 (patch)
treeaff2f7d2096621ea076464d4b527fe51b022cd17 /Kernel/init.cpp
parent9886b27d9cc67221efc8ee7e277570d146ee9992 (diff)
downloadserenity-dec5683e9c5edd9259e2bcebc2b5804d1fdd4082.zip
Snazz up the kprintf() output a bit by giving it its own color.
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r--Kernel/init.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp
index 115eafe35c..ea510179bf 100644
--- a/Kernel/init.cpp
+++ b/Kernel/init.cpp
@@ -100,8 +100,6 @@ static void undertaker_main()
static void init_stage2() NORETURN;
static void init_stage2()
{
- kprintf("init stage2...\n");
-
Syscall::initialize();
Disk::initialize();
@@ -229,6 +227,8 @@ void init()
tty3 = new VirtualConsole(3);
VirtualConsole::switchTo(0);
+ kprintf("Starting Serenity Operating System...\n");
+
MemoryManager::initialize();
VirtualFileSystem::initializeGlobals();