blob: 3662eaa532de958f755978e3fbe54b25885738fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <fbos/init.h>
int main(void)
{
FILE *fh = fopen("./usr/initramfs.cpio", "rb");
assert(fh);
fseek(fh, 0, SEEK_END);
long fsize = ftell(fh);
rewind(fh);
char *contents = malloc((unsigned long)fsize + 1);
fread(contents, (unsigned long)fsize, 1, fh);
fclose(fh);
contents[fsize] = 0;
extract_initrd(contents, (uint64_t)fsize);
free(contents);
// TODO
exit(0);
}
|