-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfit-image.its
49 lines (43 loc) · 1.49 KB
/
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
/dts-v1/;
/ {
description = "Test RK3328 Boot image";
#address-cells = <1>;
images {
kernel {
description = "Kernel";
data = /incbin/("Image.gz");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "gzip";
load = <0x02008000>;
entry = <0x02008000>;
hash {
algo = "sha1";
};
};
fdt {
description = "DTB";
data = /incbin/("rk3328-nanopi-r2-rev03.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x33000000>;
entry = <0x33000000>;
hash {
algo = "sha1";
};
};
};
configurations {
default = "standard";
standard {
description = "Standard Boot";
kernel = "kernel";
fdt = "fdt";
hash {
algo = "sha1";
};
};
};
};