blob: 9fcfe221afa135ee881f0ffc76fe9c42e1d1758e (
plain)
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
|
/dts-v1/;
/ {
description = "my u-boot dtb";
#address-cells = <1>;
images {
kernel@1 {
description = "my kernel";
data = /incbin/("zImage");
type = "kernel_noload";
arch = "arm";
os = "linux";
compression = "none";
load = <0x4>;
entry = <0x8>;
kernel-version = <1>;
hash@1 {
algo = "sha256";
};
};
fdt@1 {
description = "my dtb";
data = /incbin/("dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
fdt-version = <1>;
hash@1 {
algo = "sha256";
};
};
};
configurations {
default = "conf@1";
conf@1 {
description = "my conf";
kernel = "kernel@1";
fdt = "fdt@1";
signature@1 {
algo = "sha256,rsa4096";
key-name-hint = "dev";
sign-images = "fdt", "kernel";
};
};
};
};
|