From c31d465a62fbc0ec3194838db4745585471c1050 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 21 Sep 2019 18:07:07 +0200 Subject: Added ACPI based shutdown command --- src/kernel/commands/command.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/kernel/commands/command.c') 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 -- cgit v1.2.3