1/* 2 * Simple U-Boot uImage source file containing a single kernel and FDT blob 3 */ 4 5/dts-v1/; 6 7/ { 8 description = "Simple image with single Linux kernel and FDT blob"; 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 fdt@1 { 29 description = "Flattened Device Tree blob"; 30 data = /incbin/("./target.dtb"); 31 type = "flat_dt"; 32 arch = "ppc"; 33 compression = "none"; 34 hash@1 { 35 algo = "crc32"; 36 }; 37 hash@2 { 38 algo = "sha1"; 39 }; 40 }; 41 }; 42 43 configurations { 44 default = "conf@1"; 45 conf@1 { 46 description = "Boot Linux kernel with FDT blob"; 47 kernel = "kernel@1"; 48 fdt = "fdt@1"; 49 }; 50 }; 51}; 52