uboot/tools/binman/test/199_collection_section.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                collection {
  11                        content = <&section &u_boot>;
  12                };
  13                fill {
  14                        size = <2>;
  15                        fill-byte = [ff];
  16                };
  17                section: section {
  18                        u-boot-nodtb {
  19                        };
  20                        u-boot-dtb {
  21                        };
  22                };
  23                fill2 {
  24                        type = "fill";
  25                        size = <3>;
  26                        fill-byte = [fe];
  27                };
  28                u_boot: u-boot {
  29                        no-expanded;
  30                };
  31        };
  32};
  33