diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 02:17:26 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 02:17:26 +0100 |
commit | 5d4670ce3e2f075eca07fc6ba8a2065db0e56df3 (patch) | |
tree | 39f6b8309c5a6ab72dee12939bc921e633b72b38 /stage3/main.c | |
parent | 1e8c290a9937fb74ff7ec2b7ea288b2626ceba3c (diff) | |
download | cuddles-5d4670ce3e2f075eca07fc6ba8a2065db0e56df3.tar.xz |
remove shell_run_file
Diffstat (limited to 'stage3/main.c')
-rw-r--r-- | stage3/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stage3/main.c b/stage3/main.c index 30f1bbd..03a1db5 100644 --- a/stage3/main.c +++ b/stage3/main.c @@ -107,7 +107,7 @@ void kmain() ata_init(); ps2_init(); - shell_run_file(S("init")); + shell_run_cmd(S("run init")); thread *keyboard_thread = thread_create(S("keyboard"), &keyboard_handler); irq_services[1] = keyboard_thread; |