blob: 37d4e10949e87a25634da3ab5f9bbe72fb91ead4 [file] [log] [blame]
Googlere00b8eb2019-07-08 16:37:07 -07001/dts-v1/;
2
3/ {
4 description = "U-Boot mainline";
5 #address-cells = <1>;
6
7 images {
8 kernel {
9 description = "U-Boot mainline";
10 type = "kernel_noload";
11 arch = "arm";
12 os = "linux";
13 data = /incbin/("../.././b/nyan-big/u-boot.bin");
14 compression = "none";
15 load = <0>;
16 entry = <0>;
17 hash-2 {
18 algo = "sha1";
19 };
20 };
21
22 fdt-1{
23 description = "tegra124-nyan-big.dtb";
24 data = /incbin/("../.././b/nyan-big/u-boot.dtb");
25 type = "flat_dt";
26 arch = "arm";
27 compression = "none";
28 hash-1{
29 algo = "sha1";
30 };
31 };
32 };
33
34 configurations {
35 default = "config-1";
36 config-1 {
37 description = "Boot U-Boot";
38 kernel = "kernel";
39 fdt = "fdt-1";
40 };
41 };
42};