~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/doc/uImage.FIT/kernel.its

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Simple U-boot uImage source file containing a single kernel
 
3
 */
 
4
 
 
5
/dts-v1/;
 
6
 
 
7
/ {
 
8
        description = "Simple image with single Linux kernel";
 
9
        #address-cells = <1>;
 
10
 
 
11
        images {
 
12
                kernel@1 {
 
13
                        description = "Vanilla Linux kernel";
 
14
                        data = /incbin/("./vmlinux.bin.gz");
 
15
                        type = "kernel";
 
16
                        arch = "ppc";
 
17
                        os = "linux";
 
18
                        compression = "gzip";
 
19
                        load = <00000000>;
 
20
                        entry = <00000000>;
 
21
                        hash@1 {
 
22
                                algo = "crc32";
 
23
                        };
 
24
                        hash@2 {
 
25
                                algo = "sha1";
 
26
                        };
 
27
                };
 
28
        };
 
29
 
 
30
        configurations {
 
31
                default = "config@1";
 
32
                config@1 {
 
33
                        description = "Boot Linux kernel";
 
34
                        kernel = "kernel@1";
 
35
                };
 
36
        };
 
37
};