forked from Nuvoton-Israel/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoleg_fit.its
60 lines (59 loc) · 1.75 KB
/
poleg_fit.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
58
59
60
/dts-v1/;
/ {
description = "Simple image with single Linux kernel and ramdisk";
#address-cells = <0x1>;
images {
kernel@1 {
description = "Nuvoton Linux kernel";
data = /incbin/("/home/ubuntu/shared/releases/poleg/file_sys/4112.01.13/dual/deliverables/PolegSVB/zImage");
type = "kernel";
arch = "arm";
os = "linux";
compression = "none";
load = <0x8000>;
entry = <0x8000>;
hash@1 {
algo = "sha256";
};
signature@1 {
algo = "sha256,rsa2048";
key-name-hint = "poleg";
key-dir = "./build_output/tools/keys";
};
};
ramdisk@1 {
description = "Nuvoton Ramdisk Image";
data = /incbin/("/home/ubuntu/shared/releases/poleg/file_sys/4112.01.13/dual/deliverables/PolegSVB/romfs.img.gz");
type = "ramdisk";
arch = "arm";
os = "linux";
compression = "none";
load = <0x01d00000>;
entry = <0x01d00000>;
hash@1 {
algo = "sha256";
};
signature@1 {
algo = "sha256,rsa2048";
key-name-hint = "poleg";
key-dir = "./build_output/tools/keys";
};
};
};
configurations {
default = "conf@1";
conf@1 {
description = "Boot Linux kernel and ramdisk";
kernel = "kernel@1";
ramdisk = "ramdisk@1";
};
hash@1 {
algo = "sha256";
};
signature@1 {
algo = "sha256,rsa2048";
key-name-hint = "poleg";
key-dir = "./build_output/tools/keys";
};
};
};