From 8e27cf2428246d5da26f5a3d05e1398518daf415 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 24 Oct 2018 00:51:09 +0200 Subject: [PATCH] Cleanup. --- Kernel/init.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 5e709940dc..e67e92329a 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -30,7 +30,7 @@ #define TEST_VFS //#define STRESS_TEST_SPAWNING //#define TEST_ELF_LOADER -#define TEST_CRASHY_USER_PROCESSES +//#define TEST_CRASHY_USER_PROCESSES system_t system; @@ -112,15 +112,6 @@ static void init_stage2() procfs->initialize(); vfs->mount(procfs.copyRef(), "/proc"); - { - auto motdFile = vfs->open("/proc/summary"); - ASSERT(motdFile); - auto motdData = motdFile->readEntireFile(); - - for (unsigned i = 0; i < motdData.size(); ++i) { - kprintf("%c", motdData[i]); - } - } #endif #ifdef TEST_CRASHY_USER_PROCESSES