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 allow-repack; 11 12 fill { 13 size = <0x1000>; 14 fill-byte = [77]; 15 }; 16 17 fit { 18 description = "test-desc"; 19 #address-cells = <1>; 20 21 images { 22 kernel { 23 description = "test u-boot"; 24 type = "kernel"; 25 arch = "arm64"; 26 os = "linux"; 27 compression = "none"; 28 load = <00000000>; 29 entry = <00000000>; 30 31 u-boot { 32 }; 33 }; 34 35 fdt-1 { 36 description = "test u-boot-nodtb"; 37 type = "flat_dt"; 38 arch = "arm64"; 39 compression = "none"; 40 41 u-boot-nodtb { 42 }; 43 }; 44 45 scr-1 { 46 description = "test blob"; 47 type = "script"; 48 arch = "arm64"; 49 compression = "none"; 50 51 blob { 52 filename = "compress"; 53 }; 54 }; 55 }; 56 57 configurations { 58 default = "conf-1"; 59 60 conf-1 { 61 description = "Kernel with FDT blob"; 62 kernel = "kernel"; 63 fdt = "fdt-1"; 64 }; 65 }; 66 }; 67 68 u-boot-dtb { 69 }; 70 71 fdtmap { 72 }; 73 }; 74}; 75