From 644d9da7c883e7bef4598254fa0679a3cea5f001 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 28 Oct 2019 15:49:45 +0100 Subject: Added cmos based rtc date & time --- src/kernel/commands/command.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/kernel/commands/command.c') diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c index 8ddbb08..2334219 100644 --- a/src/kernel/commands/command.c +++ b/src/kernel/commands/command.c @@ -2,6 +2,8 @@ #include #include #include +#include +#include int32_t starts_with(const char *a, const char *b) { size_t length_pre = strlen(b); @@ -22,6 +24,11 @@ void exec_command(char *command) { acpi_poweroff(); else if (starts_with(command, "zzz")) vesa_draw_string("Not implemented\n"); + else if (starts_with(command, "time")) { + vesa_draw_number(get_time()); + vesa_draw_string("\n"); + } else if (starts_with(command, "date")) + write_time(); else if (starts_with(command, "reboot")) reboot(); else -- cgit v1.2.3