diff options
author | Marvin Borner | 2019-09-19 21:28:25 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-19 21:28:25 +0200 |
commit | 8fd9eaf2d582893e6b3117d0dbeb1d368ca61d7a (patch) | |
tree | 2926ef26a93fc1b449833f62cd63015a24f0a366 /src/kernel/commands/command.c | |
parent | 05e1fedcc9cd30d1a34a65e640da45e980b4f859 (diff) |
Added sleep command/action
Diffstat (limited to 'src/kernel/commands/command.c')
-rw-r--r-- | src/kernel/commands/command.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c index 9cbcb07..2aeae73 100644 --- a/src/kernel/commands/command.c +++ b/src/kernel/commands/command.c @@ -1,6 +1,7 @@ #include "../graphics/graphics.h" #include "../lib/lib.h" #include "../io/io.h" +#include "../apm/apm.h" int32_t starts_with(const char *a, const char *b) { size_t length_pre = strlen(b); @@ -8,8 +9,6 @@ int32_t starts_with(const char *a, const char *b) { return length_main < length_pre ? 0 : memory_compare(b, a, length_pre) == 0; } -extern void shutdown(); - void exec_command(char *command) { if (starts_with(command, "ls")) terminal_write_line("Listing files"); @@ -18,7 +17,9 @@ void exec_command(char *command) { else if (starts_with(command, "ping")) terminal_write_line("pong!"); else if (starts_with(command, "shutdown")) - shutdown(); + apm_poweroff(); + else if (starts_with(command, "zzz")) + apm_sleep(); else if (starts_with(command, "reboot")) reboot(); else |