diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-11 14:37:04 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-11 14:37:04 -0400 |
commit | 42a2bdaecaee627247689b3f4ff2828fe3c8dc97 (patch) | |
tree | 17e59594b1979912401eecb05891234e028e8869 /device | |
parent | 7f350e7ee1c2c38e5ac0b6c22c17388f6c78f0b5 (diff) | |
download | jove-kernel-42a2bdaecaee627247689b3f4ff2828fe3c8dc97.tar.gz jove-kernel-42a2bdaecaee627247689b3f4ff2828fe3c8dc97.tar.bz2 jove-kernel-42a2bdaecaee627247689b3f4ff2828fe3c8dc97.zip |
load init from ELF executable
Diffstat (limited to 'device')
-rw-r--r-- | device/initrd.c | 2 | ||||
-rw-r--r-- | device/portio_uart.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/device/initrd.c b/device/initrd.c index 58f38c9..b57687c 100644 --- a/device/initrd.c +++ b/device/initrd.c @@ -5,7 +5,7 @@ #include "device/initrd.h" #include "boot.h" #include "object.h" -#include "jove.h" +#include "init.h" #include "bootargs.h" #include "print.h" #include "string.h" diff --git a/device/portio_uart.c b/device/portio_uart.c index 58314d5..9cc76f8 100644 --- a/device/portio_uart.c +++ b/device/portio_uart.c @@ -1,5 +1,5 @@ #ifdef ENABLE_PORTIO_UART -#include "jove.h" +#include "init.h" #include "device/portio_uart.h" #include "device/portio.h" |