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 u-boot { 11 }; 12 fit { 13 description = "test-desc"; 14 #address-cells = <1>; 15 fit,fdt-list = "of-list"; 16 17 images { 18 atf { 19 description = "atf firmware"; 20 type = "firmware"; 21 compression = "none"; 22 load = <00000000>; 23 entry = <00000000>; 24 }; 25 uboot { 26 description = "U-Boot firmware"; 27 type = "firmware"; 28 compression = "none"; 29 load = <00000000>; 30 entry = <00000000>; 31 }; 32 kernel { 33 description = "Vanilla Linux kernel"; 34 type = "kernel"; 35 arch = "ppc"; 36 os = "linux"; 37 compression = "gzip"; 38 load = <00000000>; 39 entry = <00000000>; 40 hash-1 { 41 algo = "crc32"; 42 }; 43 hash-2 { 44 algo = "sha1"; 45 }; 46 u-boot { 47 }; 48 }; 49 @fdt-SEQ { 50 fit,operation = "gen-fdt-nodes"; 51 description = "fdt-NAME.dtb"; 52 type = "flat_dt"; 53 compression = "none"; 54 }; 55 }; 56 57 configurations { 58 default = "@config-DEFAULT-SEQ"; 59 @config-SEQ { 60 description = "conf-NAME.dtb"; 61 firmware = "uboot"; 62 loadables = "atf"; 63 fdt = "fdt-SEQ"; 64 }; 65 }; 66 }; 67 u-boot-nodtb { 68 }; 69 }; 70}; 71