refactor: striped more arch-related code from the kernel code base
[lunaix-os.git] / lunaix-os / kernel / proc0.c
index 379ebf53b87b591fa07a84be0d3bbffee7300253..221ec2375aea3f0ec499dfdb97d910ba1b470848 100644 (file)
@@ -26,7 +26,7 @@
 #include <hal/pci.h>
 #include <hal/rtc.h>
 
-#include <arch/x86/boot/multiboot.h>
+#include <sys/boot/multiboot.h>
 
 #include <klibc/string.h>
 
@@ -68,7 +68,7 @@ exec_initd()
 {
     int errno = 0;
 
-    if ((errno = exec_kexecve("/mnt/lunaix-os/usr/init", NULL, NULL))) {
+    if ((errno = exec_kexecve("/mnt/lunaix-os/usr/bin/init", NULL, NULL))) {
         goto fail;
     }