-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoreboot-linuxboot-example.json
62 lines (62 loc) · 1.85 KB
/
coreboot-linuxboot-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
56
57
58
59
60
61
62
{
"coreboot": {
"coreboot-example-with-linuxboot": {
"depends": [
"linux-example-with-uroot"
],
"sdk_url": "ghcr.io/9elements/firmware-action/coreboot_24.05:main",
"repo_path": "coreboot-linuxboot-example/coreboot/",
"defconfig_path": "coreboot-linuxboot-example/coreboot_linuxboot_defconfig",
"output_dir": "output-linuxboot-coreboot/",
"container_output_dirs": null,
"container_output_files": [
"build/coreboot.rom",
"defconfig"
],
"blobs": {},
"container_input_dir": "inputs/",
"input_dirs": null,
"input_files": [
"output-linuxboot-linux/bzImage"
]
}
},
"linux": {
"linux-example-with-uroot": {
"depends": [
"uroot-example"
],
"sdk_url": "ghcr.io/9elements/firmware-action/linux_6.6:main",
"arch": "x86_64",
"repo_path": "coreboot-linuxboot-example/linux/",
"defconfig_path": "coreboot-linuxboot-example/linux_defconfig",
"output_dir": "output-linuxboot-linux/",
"container_output_dirs": null,
"container_output_files": [
"arch/x86/boot/bzImage"
],
"gcc_version": "",
"container_input_dir": "inputs/",
"input_dirs": null,
"input_files": [
"output-linuxboot-uroot/initramfs.linux_amd64.cpio"
]
}
},
"u-root": {
"uroot-example": {
"depends": null,
"sdk_url": "ghcr.io/9elements/firmware-action/uroot_0.14.0:main",
"repo_path": "coreboot-linuxboot-example/u-root/",
"output_dir": "output-linuxboot-uroot/",
"container_output_dirs": null,
"container_output_files": [
"../tmp/initramfs.linux_amd64.cpio"
],
"build_command": "go build; GOARCH=amd64 GOOS=linux ./u-root core boot",
"container_input_dir": "inputs/",
"input_dirs": null,
"input_files": null
}
}
}