Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 1 | #ifndef _LOAD_H |
2 | #define _LOAD_H | ||||
3 | |||||
4 | #include <stddef.h> | ||||
5 | #include <stdint.h> | ||||
6 | |||||
7 | #include "cpio.h" | ||||
8 | #include "memiter.h" | ||||
9 | |||||
10 | bool load_primary(struct cpio *c, size_t kernel_arg, struct memiter *initrd); | ||||
11 | bool load_secondary(struct cpio *c, uint64_t mem_begin, uint64_t *mem_end); | ||||
12 | |||||
13 | #endif /* _LOAD_H */ |