aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/commands
diff options
context:
space:
mode:
authorMarvin Borner2019-09-21 18:07:07 +0200
committerMarvin Borner2019-09-21 18:07:07 +0200
commitc31d465a62fbc0ec3194838db4745585471c1050 (patch)
tree10e544bc856ea1898e39d6c9304f746aa1d74670 /src/kernel/commands
parentd91024fb750356bad65cce5bdef206e530b37c53 (diff)
Added ACPI based shutdown command
Diffstat (limited to 'src/kernel/commands')
-rw-r--r--src/kernel/commands/command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c
index 2aeae73..c673b44 100644
--- a/src/kernel/commands/command.c
+++ b/src/kernel/commands/command.c
@@ -1,7 +1,7 @@
#include "../graphics/graphics.h"
#include "../lib/lib.h"
#include "../io/io.h"
-#include "../apm/apm.h"
+#include "../acpi/acpi.h"
int32_t starts_with(const char *a, const char *b) {
size_t length_pre = strlen(b);
@@ -17,9 +17,9 @@ void exec_command(char *command) {
else if (starts_with(command, "ping"))
terminal_write_line("pong!");
else if (starts_with(command, "shutdown"))
- apm_poweroff();
+ acpi_poweroff();
else if (starts_with(command, "zzz"))
- apm_sleep();
+ terminal_write_line("Not implemented");
else if (starts_with(command, "reboot"))
reboot();
else