aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/initrd.h
blob: bb5c376cdc78fa7938ac6b58c31fc37ec12d6f56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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);

void initrd_test();

#endif