summaryrefslogtreecommitdiffstats
path: root/include/initrd.h
blob: 7e7fe1efef2a5ae848eb76ccaa018f1bbf842aed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _JOVE_INITRD_H
#define _JOVE_INITRD_H 1

#include <stddef.h>

typedef struct initrd_file {
    void *header;
    const char *name;
    const void *data;
    size_t size;
} initrd_file_t;

void initrd_setup(void);

initrd_file_t *ird_getfile(const char *path);

#endif