1// SPDX-License-Identifier: GPL-2.0+ 2 3/dts-v1/; 4 5/ { 6 #address-cells = <1>; 7 #size-cells = <1>; 8 9 binman { 10 fit { 11 description = "test-desc"; 12 #address-cells = <1>; 13 14 images { 15 kernel { 16 description = "Vanilla Linux kernel"; 17 type = "kernel"; 18 arch = "ppc"; 19 os = "linux"; 20 compression = "gzip"; 21 load = <00000000>; 22 entry = <00000000>; 23 hash { 24 algo = "sha1"; 25 }; 26 u-boot { 27 }; 28 }; 29 fdt-1 { 30 description = "Flattened Device Tree blob"; 31 type = "flat_dt"; 32 arch = "ppc"; 33 compression = "none"; 34 hash { 35 algo = "crc32"; 36 }; 37 u-boot-spl-dtb { 38 }; 39 }; 40 }; 41 42 configurations { 43 default = "conf-1"; 44 conf-1 { 45 description = "Boot Linux kernel with FDT blob"; 46 kernel = "kernel"; 47 fdt = "fdt-1"; 48 }; 49 }; 50 }; 51 }; 52}; 53