-
Notifications
You must be signed in to change notification settings - Fork 33
/
uboot-fit-image.its
58 lines (51 loc) · 1.84 KB
/
uboot-fit-image.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
46
47
48
49
50
51
52
53
54
55
56
57
/dts-v1/;
/ {
description = "U-boot FIT image for HiFive Unleashed";
#address-cells = <2>;
images {
rvirt {
description = "RVirt";
data = /incbin/("target/riscv64imac-unknown-none-elf/release/rvirt-bare-metal.bin");
type = "kernel";
arch = "riscv";
os = "linux";
load = <0x80000000>;
entry = <0x80000000>;
compression = "none";
hash-1 {
algo = "sha256";
};
};
kernel {
description = "Linux kernel";
data = /incbin/("fedora-vmlinux");
type = "ramdisk";
arch = "riscv";
os = "linux";
load = <0x82000000>;
compression = "none";
hash-1 {
algo = "sha256";
};
};
fdt {
data = /incbin/("hifive_u540.dtb");
type = "flat_dt";
arch = "riscv";
load = <0x81f00000>;
compression = "none";
hash-1 {
algo = "sha256";
};
};
};
configurations {
default = "config-1";
config-1 {
description = "HiFive Unleashed with RVirt";
kernel = "rvirt";
fdt = "fdt";
loadables = "kernel";
};
};
};