uboot/tools/binman/test/088_expand_size.dts
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/dts-v1/;
   3
   4/ {
   5        binman {
   6                size = <40>;
   7                fill {
   8                        expand-size;
   9                        fill-byte = [61];
  10                        size = <0>;
  11                };
  12                u-boot {
  13                        offset = <8>;
  14                };
  15                section {
  16                        expand-size;
  17                        pad-byte = <0x62>;
  18                        intel-mrc {
  19                        };
  20                };
  21                u-boot2 {
  22                        type = "u-boot";
  23                        offset = <16>;
  24                };
  25                section2 {
  26                        type = "section";
  27                        fill {
  28                                expand-size;
  29                                fill-byte = [63];
  30                                size = <0>;
  31                        };
  32                        u-boot {
  33                                offset = <8>;
  34                        };
  35                };
  36                fill2 {
  37                        type = "fill";
  38                        expand-size;
  39                        fill-byte = [64];
  40                        size = <0>;
  41                };
  42        };
  43};
  44