uboot/tools/binman/test/067_fmap.dts
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/dts-v1/;
   3
   4/ {
   5        #address-cells = <1>;
   6        #size-cells = <1>;
   7
   8        binman {
   9                section@0 {
  10                        read-only;
  11                        name-prefix = "ro-";
  12                        size = <0x10>;
  13                        pad-byte = <0x21>;
  14
  15                        u-boot {
  16                        };
  17                };
  18                section@1 {
  19                        name-prefix = "rw-";
  20                        size = <0x10>;
  21                        pad-byte = <0x61>;
  22
  23                        u-boot {
  24                        };
  25                };
  26                fmap {
  27                };
  28        };
  29};
  30