From 5e8cf84fb8fb2821eb948ffd2fddafd18b18e8cc Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 15 Sep 2025 03:25:51 -0400 Subject: kern: cons: Finish string writing logic - Wrap on X overflow - Wrap on Y overflow - Keep track of max console width and height - Add console enable/disable control Signed-off-by: Ian Moffett --- src/sys/os/os_init.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sys/os/os_init.c') diff --git a/src/sys/os/os_init.c b/src/sys/os/os_init.c index 66e8aca..b56ab94 100644 --- a/src/sys/os/os_init.c +++ b/src/sys/os/os_init.c @@ -18,6 +18,7 @@ main(void) vm_init(); cons_init(); + syslog_toggle(true); panic("end of kernel reached\n"); for (;;); -- cgit v1.2.3