diff options
Diffstat (limited to 'tools/binman/test/067_fmap.dts')
-rw-r--r-- | tools/binman/test/067_fmap.dts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/binman/test/067_fmap.dts b/tools/binman/test/067_fmap.dts new file mode 100644 index 0000000000..9c0e293ac8 --- /dev/null +++ b/tools/binman/test/067_fmap.dts @@ -0,0 +1,29 @@ +// SPDX-License-Identifier: GPL-2.0+ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + section@0 { + read-only; + name-prefix = "ro-"; + size = <0x10>; + pad-byte = <0x21>; + + u-boot { + }; + }; + section@1 { + name-prefix = "rw-"; + size = <0x10>; + pad-byte = <0x61>; + + u-boot { + }; + }; + fmap { + }; + }; +}; |