summaryrefslogtreecommitdiff
path: root/kernel/boot.its
blob: b3f8efae0297e0ff1be733176170eb29afe59f31 (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
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
/dts-v1/;

/ {
    description = "Chrome OS kernel image with one or more FDT blobs";
    images {
        kernel@0 {
            description = "kernel";
            data = /incbin/("build/Image");
            type = "kernel_noload";
            arch = "arm64";
            os = "linux";
            compression = "none";
            load = <0>;
            entry = <0>;
        };

        ramdisk@0 {
            description = "RAM disk";
            data = /incbin/("/boot/initrd.img");
            type = "ramdisk";
            arch = "arm64";
            os = "linux";
            compression = "none";
            hash@1{
                algo = "sha1";
            };
        };

        fdt@0 {
            description = "rk3399-gru-bob-r0.dtb";
            data = /incbin/("dtbs/rk3399-gru-bob-r0.dtb");
            type = "flat_dt";
            arch = "arm64";
            compression = "none";
            hash@1{
                algo = "sha1";
            };
        };

        fdt@1 {
            description = "rk3399-gru-bob-r2.dtb";
            data = /incbin/("dtbs/rk3399-gru-bob-r2.dtb");
            type = "flat_dt";
            arch = "arm64";
            compression = "none";
            hash@1{
                algo = "sha1";
            };
        };

        fdt@2 {
            description = "rk3399-gru-bob-r4.dtb";
            data = /incbin/("dtbs/rk3399-gru-bob-r4.dtb");
            type = "flat_dt";
            arch = "arm64";
            compression = "none";
            hash@1{
                algo = "sha1";
            };
        };
    };
    configurations {
        default = "conf@0";

        conf@0 {
            kernel = "kernel@0";
            ramdisk = "ramdisk@0";
            fdt = "fdt@0";
        };

        conf@1 {
            kernel = "kernel@0";
            ramdisk = "ramdisk@0";
            fdt = "fdt@1";
        };

        conf@2 {
            kernel = "kernel@0";
            ramdisk = "ramdisk@0";
            fdt = "fdt@2";
        };
    };
};