-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsd-image-release.its
45 lines (41 loc) · 1.01 KB
/
sd-image-release.its
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
/dts-v1/;
/ {
description = "RustSBI Test Image";
#address-cells = <1>;
images {
rustsbi {
data = /incbin/("target/riscv64imac-unknown-none-elf/release/rustsbi-hifive-unmatched.bin");
description = "RustSBI Firmware (Release)";
type = "firmware";
os = "rustsbi";
arch = "riscv";
compression = "none";
load = <0x80000000>;
entry = <0x80000000>;
};
fdt-1 {
description = "hifive-unmatched-a00";
type = "flat_dt";
compression = "none";
data = /incbin/("rustsbi-hifive-unmatched/src/hifive-unmatched-a00.dtb");
};
payload {
data = <0x0, 0x0, 0x0, 0x0>;
description = "U-Boot";
type = "standalone";
os = "U-Boot";
arch = "riscv";
compression = "none";
load = <0x80200000>;
};
};
configurations {
default = "unmatched-sdcard";
unmatched-sdcard {
description = "hifive-unmatched-a00";
firmware = "rustsbi";
loadables = "payload";
fdt = "fdt-1";
};
};
};