diff options
Diffstat (limited to 'include/boot.h')
-rw-r--r-- | include/boot.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/boot.h b/include/boot.h index 989b4b9..9ff89f7 100644 --- a/include/boot.h +++ b/include/boot.h @@ -1,7 +1,17 @@ #ifndef _JOVE_BOOT_H #define _JOVE_BOOT_H 1 +#include <stddef.h> +#include <stdint.h> + extern char *jove_bootargs; extern int jove_bootargs_len; +extern void *_boot_initrd_base; +extern size_t _boot_initrd_size; + +extern uintptr_t _boot_kernel_phys_base; + +void boot_populate_untyped(void); + #endif |