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