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