1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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