Add basic ls

This commit is contained in:
2026-06-17 22:20:08 +03:00
parent 03b3ddac73
commit 968bb02aa8
11 changed files with 138 additions and 10 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ void kernel_main() {
kernel->stdin = keyboard_init();
kernel->stdout = vga_init();
fs_node_t *bin = fs_open_by(kernel->root, "terminal");
fs_node_t *bin = path_open_file(kernel->root, kernel->cwd, "bin/terminal");
ASSERT(bin, "kernel: terminal not found");