Generate a basic /proc/summary file with some info about all tasks.

This commit is contained in:
Andreas Kling
2018-10-23 12:44:46 +02:00
parent ed2422d7af
commit 63e253bac9
5 changed files with 35 additions and 5 deletions

View File

@@ -138,7 +138,7 @@ static void init_stage2()
vfs->mount(procfs.copyRef(), "/proc");
{
auto motdFile = vfs->open("/motd.txt");
auto motdFile = vfs->open("/proc/summary");
ASSERT(motdFile);
auto motdData = motdFile->readEntireFile();