diff options
author | Marvin Borner | 2019-11-20 22:17:48 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-20 22:28:30 +0100 |
commit | 0ba991750314310a5e53b0d8135aef5b1352b261 (patch) | |
tree | acae7106a24b85116cd7119bd239c3d9299f2ba8 /src/kernel/fs/initrd.h | |
parent | 6ca5f1bcec7f0716bad5e1cdd38d41be137fe7e5 (diff) |
Began two-stage hdd bootloader and os installer
Diffstat (limited to 'src/kernel/fs/initrd.h')
-rw-r--r-- | src/kernel/fs/initrd.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/kernel/fs/initrd.h b/src/kernel/fs/initrd.h deleted file mode 100644 index bb5c376..0000000 --- a/src/kernel/fs/initrd.h +++ /dev/null @@ -1,22 +0,0 @@ -#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 |