~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: 0b169c7c27c48116a66c149e298d7a87cbcabbd9 (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
.. SPDX-License-Identifier: GPL-2.0+

Kernel and multiple compressed FDT blobs
========================================

Since the FDTs are compressed, configurations must provide a compatible
string to match directly.

::

    /dts-v1/;

    / {
        description = "Image with single Linux kernel and compressed FDT blobs";
        #address-cells = <1>;

        images {
            kernel {
                description = "Vanilla Linux kernel";
                data = /incbin/("./vmlinux.bin.gz");
                type = "kernel";
                arch = "ppc";
                os = "linux";
                compression = "gzip";
                load = <00000000>;
                entry = <00000000>;
                hash-1 {
                    algo = "crc32";
                };
                hash-2 {
                    algo = "sha1";
                };
            };
            fdt@1 {
                description = "Flattened Device Tree blob 1";
                data = /incbin/("./myboard-var1.dtb");
                type = "flat_dt";
                arch = "ppc";
                compression = "gzip";
                hash-1 {
                    algo = "crc32";
                };
                hash-2 {
                    algo = "sha1";
                };
            };
            fdt@2 {
                description = "Flattened Device Tree blob 2";
                data = /incbin/("./myboard-var2.dtb");
                type = "flat_dt";
                arch = "ppc";
                compression = "lzma";
                hash-1 {
                    algo = "crc32";
                };
                hash-2 {
                    algo = "sha1";
                };
            };
        };

        configurations {
            default = "conf@1";
            conf@1 {
                description = "Boot Linux kernel with FDT blob 1";
                kernel = "kernel";
                fdt = "fdt@1";
                compatible = "myvendor,myboard-variant1";
            };
            conf@2 {
                description = "Boot Linux kernel with FDT blob 2";
                kernel = "kernel";
                fdt = "fdt@2";
                compatible = "myvendor,myboard-variant2";
            };
        };
    };