blob: 17ed94c60d5969b3ec530d3d0ebeef03fde59bac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef APOS_INITRD_H
#define APOS_INITRD_H
#include <apos/types.h>
#include <apos/pmem.h>
#include <apos/vmem.h>
size_t get_init_size(const void *fdt);
vm_t get_init_base(const void *fdt);
pm_t get_initrdtop(const void *fdt);
pm_t get_initrdbase(const void *fdt);
#endif /* APOS_INITRD_H */
|