From 988342ee4f0cf2a9df1b6b749d18c36dd951d85d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 20 Sep 2025 23:57:41 -0400 Subject: kern: Initialize ACPI before cpu_conf() call Signed-off-by: Ian Moffett --- src/sys/os/os_init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/sys/os') diff --git a/src/sys/os/os_init.c b/src/sys/os/os_init.c index fa411f0..05c9415 100644 --- a/src/sys/os/os_init.c +++ b/src/sys/os/os_init.c @@ -64,12 +64,11 @@ main(void) struct pcore *core; int error; - acpi_early_init(); - cons_init(); syslog_toggle(true); boot_print(); + acpi_early_init(); cpu_conf(&g_bsp); vm_init(); -- cgit v1.2.3