Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 1 | /* |
Bin Meng | 7557405 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 2 | * Simple U-Boot uImage source file containing a single kernel and FDT blob |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 3 | */ |
Ira W. Snyder | d3bdfea | 2009-11-04 13:37:59 -0800 | [diff] [blame] | 4 | |
| 5 | /dts-v1/; |
| 6 | |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 7 | / { |
| 8 | description = "Simple image with single Linux kernel and FDT blob"; |
| 9 | #address-cells = <1>; |
| 10 | |
| 11 | images { |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 12 | kernel { |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 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>; |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 21 | hash-1 { |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 22 | algo = "crc32"; |
| 23 | }; |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 24 | hash-2 { |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 25 | algo = "sha1"; |
| 26 | }; |
| 27 | }; |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 28 | fdt-1 { |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 29 | description = "Flattened Device Tree blob"; |
| 30 | data = /incbin/("./target.dtb"); |
| 31 | type = "flat_dt"; |
| 32 | arch = "ppc"; |
| 33 | compression = "none"; |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 34 | hash-1 { |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 35 | algo = "crc32"; |
| 36 | }; |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 37 | hash-2 { |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 38 | algo = "sha1"; |
| 39 | }; |
| 40 | }; |
| 41 | }; |
| 42 | |
| 43 | configurations { |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 44 | default = "conf-1"; |
| 45 | conf-1 { |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 46 | description = "Boot Linux kernel with FDT blob"; |
Andre Przywara | 9b22b6d | 2017-12-04 02:05:08 +0000 | [diff] [blame] | 47 | kernel = "kernel"; |
| 48 | fdt = "fdt-1"; |
Marian Balakowicz | 18710b8 | 2008-03-12 12:13:13 +0100 | [diff] [blame] | 49 | }; |
| 50 | }; |
| 51 | }; |