blob: 5f36aa1107130e02966fc5b2ee5e08952b5252d8 (
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
29
30
31
32
33
34
35
36
|
#include <shared/flags.h>
#include <shared/mem.h>
#include <shared/syscalls.h>
#include <user/lib/elfload.h>
#include <user/lib/fs/misc.h>
#include "tar.h"
extern char _bss_start;
extern char _bss_end;
extern char _initrd;
__attribute__((section(".text.startup")))
int main(void) {
_syscall_memflag(&_bss_start, &_bss_end - &_bss_start, MEMFLAG_PRESENT);
/* move everything provided by the kernel to /kdev */
MOUNT("/kdev/", fs_passthru(NULL));
if (!fork2_n_mount("/")) {
const char *l[] = {"/kdev/", NULL};
fs_whitelist(l);
}
if (!fork2_n_mount("/")) fs_dir_inject("/kdev/"); // TODO should be part of fs_whitelist
MOUNT("/init/", tar_driver(&_initrd));
void *init = tar_find("init.elf", 8, &_initrd, ~0) + 512;
if (init) {
_klogf("execing init.elf");
elf_exec(init);
_klogf("elf_exec failed");
} else {
_klogf("couldn't find init.elf");
}
_syscall_exit(1);
}
|