blob: 69f2bac5fd79a15c6da9b262090907b79919f3da [file] [log] [blame]
swissChili8efa4922021-03-02 16:34:49 -08001#pragma once
2
3struct initrd_global_header
4{
5 unsigned int magic;
6 unsigned long num_files;
7} __attribute__((packed));
8
9struct initrd_file_header
10{
11 char name[64];
12 unsigned long size;
13};
14
15/* that's it! */