aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/initrd.h
blob: 10dec222c86fd148b88dae180d9dec741d2f291e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MELVIX_INITRD_H
#define MELVIX_INITRD_H

#include <stdint.h>
#include <kernel/fs/vfs.h>

typedef struct {
    uint32_t nfiles;
} initrd_header_t;

typedef struct {
    uint8_t magic;
    int8_t name[64];
    uint32_t offset;
    uint32_t length;
} initrd_file_header_t;

fs_node_t *initialise_initrd(uint32_t location);

#endif