aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/commands
diff options
context:
space:
mode:
authorMarvin Borner2020-01-20 23:12:54 +0100
committerMarvin Borner2020-01-20 23:12:54 +0100
commit391ed256d21a6ae2e2456d1809f357e6e96e15d1 (patch)
tree0fe9ffb3c59bbfeb3d8a04ab7fc6efba60d81e79 /src/kernel/commands
parentd5d1749257ff8b9aa6b5ace4b4720b484a2860f3 (diff)
Added pure awesomeness
Actually quite some days of work but ok
Diffstat (limited to 'src/kernel/commands')
-rw-r--r--src/kernel/commands/command.c39
-rw-r--r--src/kernel/commands/command.h11
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