-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathendros.its
More file actions
46 lines (43 loc) · 1.42 KB
/
endros.its
File metadata and controls
46 lines (43 loc) · 1.42 KB
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
/dts-v1/;
/ {
description = "EndrOS FIT Image";
#address-cells = <1>;
images {
kernel {
description = "Kernel";
data = /incbin/("endros.img");
type = "kernel";
arch = "riscv";
os = "linux";
compression = "none";
load = <0x80200000>;
entry = <0x80200000>;
hash {
algo = "sha1";
};
};
fdt {
description = "DTB";
data = /incbin/("u-boot.dtb");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x80000000>;
entry = <0x80000000>;
hash {
algo = "sha1";
};
};
};
configurations {
default = "standard";
standard {
description = "Standard Boot";
kernel = "kernel";
fdt = "fdt";
hash {
algo = "sha1";
};
};
};
};