diff options
Diffstat (limited to 'src/kernel/commands')
-rw-r--r-- | src/kernel/commands/command.c | 6 |
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 |