blob: 93aa535cec4a60f4f106d0002e96f36907916fd4 [file] [log] [blame]
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +01001#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
10bool load_primary(struct cpio *c, size_t kernel_arg, struct memiter *initrd);
11bool load_secondary(struct cpio *c, uint64_t mem_begin, uint64_t *mem_end);
12
13#endif /* _LOAD_H */