]> rtime.felk.cvut.cz Git - fpga/zynq/canbench-sw.git/blob - petalinux/uboot-image.its
uboot images migrated to FIT, bootscript loads only 1 image (faster)
[fpga/zynq/canbench-sw.git] / petalinux / uboot-image.its
1 /*
2  * Simple U-boot uImage source file containing a single kernel and FDT blob
3  */
4
5 /dts-v1/;
6
7 / {
8         description = "Kernel for MicroZed";
9         #address-cells = <1>;
10
11         images {
12                 kernel@1 {
13                         description = "Linux kernel";
14                         data = /incbin/("./images/linux/zImage");
15                         type = "kernel";
16                         arch = "arm";
17                         os = "linux";
18                         compression = "none";
19                         load = <0x00008000>;
20                         entry = <0x00008000>;
21                         hash@1 {
22                                 algo = "crc32";
23                         };
24                         hash@2 {
25                                 algo = "sha1";
26                         };
27                 };
28                 fdt@1 {
29                         description = "Flattened Device Tree blob";
30                         data = /incbin/("./images/linux/system.dtb");
31                         type = "flat_dt";
32                         arch = "arm";
33                         compression = "none";
34                         hash@1 {
35                                 algo = "crc32";
36                         };
37                         hash@2 {
38                                 algo = "sha1";
39                         };
40                 };
41                 fpga@1 {
42                         description = "FPGA bitstream";
43                         data = /incbin/("./images/linux/system.bit.gz");
44                         type = "filesystem";
45                         compression = "gzip";
46                         hash@1 {
47                                 algo = "crc32";
48                         };
49                         hash@2 {
50                                 algo = "sha1";
51                         };
52                 };
53         };
54
55         configurations {
56                 default = "conf@1";
57                 conf@1 {
58                         description = "Boot Linux kernel with FDT blob";
59                         kernel = "kernel@1";
60                         fdt = "fdt@1";
61                 };
62         };
63 };