uboot/tools/binman/test/129_decode_image_nohdr.dts
<<
>>
Prefs
   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                size = <0xc00>;
  11                u-boot {
  12                };
  13                section {
  14                        align = <0x100>;
  15                        cbfs {
  16                                size = <0x400>;
  17                                u-boot {
  18                                        cbfs-type = "raw";
  19                                };
  20                                u-boot-dtb {
  21                                        cbfs-type = "raw";
  22                                        cbfs-compress = "lzma";
  23                                        cbfs-offset = <0x80>;
  24                                };
  25                        };
  26                        u-boot-dtb {
  27                                compress = "lz4";
  28                        };
  29                };
  30                fdtmap {
  31                };
  32        };
  33};
  34