-
Notifications
You must be signed in to change notification settings - Fork 0
/
headstart.example.json
55 lines (55 loc) · 1.12 KB
/
headstart.example.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"resolution": "1920x1080x32",
"entries": [
{
"name": "Kora",
"kernel": "/boot/vmydin",
"protocol": "ydin",
"modules": [
{
"name": "init",
"module": "/boot/kora/modules/init"
}
]
},
{
"name": "Skift",
"kernel": "/boot/hjert",
"protocol": "handover",
"modules": [
{
"name": "init",
"module": "/boot/skift/modules/init"
}
]
},
{
"name": "Your Linux distro",
"kernel": "/boot/vmlinux",
"protocol": "linux",
"cmdline": "root=UUID=your-partition-uuid-here rw quiet",
"modules": [
{
"name": "initramfs",
"module": "/boot/initrd.tar.gz"
}
]
},
{
"name": "Example Limine kernel",
"kernel": "/boot/example.elf",
"protocol": "limine",
"modules": [
{
"name": "module_cmdline",
"module": "/boot/module.example"
}
]
},
{
"name": "Example UEFI application",
"kernel": "/EFI/BOOT/BOOTX64.EFI",
"protocol": "chainload"
}
]
}