summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-22 11:53:30 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-22 11:53:59 +0200
commite4afa2a04173d90d5e88ef0d1cd575d2a827534d (patch)
tree2989720107c1e57025eb00a05fbbba13ccad1dbc /Kernel/init.cpp
parent3a3c57357c95629dc89c1045c7dbe3b0c1c6c778 (diff)
downloadserenity-e4afa2a04173d90d5e88ef0d1cd575d2a827534d.zip
Tweak _test.o to use the putch() syscall.
It's still running in kernel space. Once I make it possible for ELFLoader to set up a ring 3 task, we'll really be cooking!
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r--Kernel/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp
index fd0c8d7510..fb0ca20b98 100644
--- a/Kernel/init.cpp
+++ b/Kernel/init.cpp
@@ -170,7 +170,7 @@ static void init_stage2()
#ifdef TEST_ELF_LOADER
{
- auto testExecutable = vfs->open("/_hello.o");
+ auto testExecutable = vfs->open("/_test.o");
ASSERT(testExecutable);
auto testExecutableData = testExecutable->readEntireFile();
ASSERT(testExecutableData);