blob: 56441063f10da529c0c1599bc09fd54a5790a3c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef APOS_INITRD_H
#define APOS_INITRD_H
/**
* @file initrd.h
* Initrd handling.
*/
#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 */
|