1/dts-v1/; 2 3/ { 4 description = "Chrome OS kernel image with FDT"; 5 #address-cells = <1>; 6 7 images { 8 kernel-1 { 9 data = /incbin/("Image"); 10 type = "kernel_noload"; 11 arch = "arm64"; 12 os = "linux"; 13 compression = "none"; 14 load = <0>; 15 entry = <0>; 16 }; 17 18 fdt-1 { 19 description = "mt8173-elm.dtb"; 20 data = /incbin/("mt8173-elm.dtb"); 21 type = "flat_dt"; 22 arch = "arm64"; 23 compression = "none"; 24 25 hash-1 { 26 algo = "sha1"; 27 }; 28 }; 29 }; 30 31 configurations { 32 default = "conf-1"; 33 conf-1 { 34 kernel = "kernel-1"; 35 fdt = "fdt-1"; 36 }; 37 }; 38}; 39