diff options
Diffstat (limited to 'src/kernel/commands')
-rw-r--r-- | src/kernel/commands/command.c | 39 | ||||
-rw-r--r-- | src/kernel/commands/command.h | 11 |
2 files changed, 0 insertions, 50 deletions
diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c deleted file mode 100644 index 691684b..0000000 --- a/src/kernel/commands/command.c +++ /dev/null @@ -1,39 +0,0 @@ -#include <kernel/lib/lib.h> -#include <kernel/io/io.h> -#include <kernel/acpi/acpi.h> -#include <kernel/graphics/vesa.h> -#include <kernel/cmos/rtc.h> -#include <kernel/timer/timer.h> -#include <kernel/lib/string.h> -#include <kernel/lib/stdio.h> - -int32_t starts_with(const char *a, const char *b) -{ - size_t length_pre = strlen(b); - size_t length_main = strlen(a); - return length_main < length_pre ? 0 : memcmp(b, a, length_pre) == 0; -} - -void exec_command(char *command) -{ - if (starts_with(command, "ls")) - printf("Listing files\n"); - else if (starts_with(command, "help")) - printf("I can't help you write now\n"); - else if (starts_with(command, "ping")) - printf("pong!\n"); - else if (starts_with(command, "clear")) - vesa_clear(); - else if (starts_with(command, "shutdown") || starts_with(command, "exit")) - acpi_poweroff(); - else if (starts_with(command, "zzz")) - printf("Not implemented\n"); - else if (starts_with(command, "time")) - printf("%d\n", (int) get_time()); - else if (starts_with(command, "date")) - write_time(); - else if (starts_with(command, "reboot")) - reboot(); - else if (command[0] != 0) - warn("Command not found!"); -} diff --git a/src/kernel/commands/command.h b/src/kernel/commands/command.h deleted file mode 100644 index 9e402aa..0000000 --- a/src/kernel/commands/command.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef MELVIX_COMMAND_H -#define MELVIX_COMMAND_H - -/** - * Execute a command in the pseudo shell - * @deprecated - will be replaced by real shell soon - * @param command The desired command - */ -void exec_command(char *command); - -#endif |