hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * Copyright (C) 2020 Rockchip Electronics Co., Ltd
 *
 * SPDX-License-Identifier: GPL-2.0
 */
 
/dts-v1/;
/ {
   description = "FIT source file for Linux";
   #address-cells = <1>;
 
   images {
       fdt {
           data = /incbin/("./images-tb/rk-kernel.dtb");
           type = "flat_dt";
           arch = "arm";
           compression = "none";
           load  = <0x01f00000>;
           hash {
               algo = "sha256";
               uboot-ignore = <1>;
           };
       };
 
       kernel {
           data = /incbin/("./images-tb/kernel");
           compression = "gzip";
           type = "kernel";
           arch = "arm";
           os = "linux";
           comp = <0x4800000>;
           entry = <0x608000>;
           load  = <0x608000>;
           hash {
               algo = "sha256";
               uboot-ignore = <1>;
 
           };
       };
 
       ramdisk {
           data = /incbin/("./images-tb/ramdisk");
           compression = "gzip";
           type = "ramdisk";
           arch = "arm";
           os = "linux";
           preload = <1>;
           comp = <0x5800000>;
           load  = <0x2800000>;
           decomp-async;
           hash {
               algo = "sha256";
               uboot-ignore = <1>;
           };
       };
 
       resource {
           data = /incbin/("./images-tb/resource");
           type = "multi";
           arch = "arm";
           compression = "none";
           hash {
               algo = "sha256";
               uboot-ignore = <1>;
           };
       };
   };
 
   configurations {
       default = "conf";
       conf {
           description = "Boot Linux kernel with FDT blob";
           rollback-index = <0x0>;
           fdt = "fdt";
           kernel = "kernel";
           ramdisk = "ramdisk";
           multi = "resource";
           signature {
               algo = "sha256,rsa2048";
               padding = "pss";
               key-name-hint = "dev";
               sign-images = "fdt", "kernel", "ramdisk", "multi";
           };
       };
   };
};