uboot/tools/binman/test/186_compress_extra.dts
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/dts-v1/;
   3
   4/ {
   5        binman {
   6                u-boot {
   7                };
   8                base {
   9                        type = "section";
  10                        u-boot {
  11                        };
  12                        section {
  13                                compress = "lz4";
  14                                blob {
  15                                        filename = "compress";
  16                                };
  17
  18                                u-boot {
  19                                };
  20                        };
  21                        section2 {
  22                                type = "section";
  23                                compress = "lz4";
  24                                blob {
  25                                        filename = "compress";
  26                                };
  27                                blob2 {
  28                                        type = "blob";
  29                                        filename = "compress";
  30                                };
  31                        };
  32                        u-boot2 {
  33                                type = "u-boot";
  34                        };
  35                };
  36        };
  37};
  38