uboot/tools/binman/test/142_replace_cbfs.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 = <0xe00>;
  11                allow-repack;
  12                u-boot {
  13                };
  14                section {
  15                        align = <0x100>;
  16                        cbfs {
  17                                size = <0x400>;
  18                                u-boot {
  19                                        cbfs-type = "raw";
  20                                };
  21                                u-boot-dtb {
  22                                        cbfs-type = "raw";
  23                                        cbfs-compress = "lzma";
  24                                        cbfs-offset = <0x80>;
  25                                };
  26                        };
  27                        u-boot-dtb {
  28                                compress = "lz4";
  29                        };
  30                };
  31                fdtmap {
  32                };
  33                image-header {
  34                        location = "end";
  35                };
  36        };
  37};
  38