diff options
| author | Simon Glass <sjg@chromium.org> | 2021-01-06 21:35:18 -0700 |
|---|---|---|
| committer | Simon Glass <sjg@chromium.org> | 2021-01-30 14:25:41 -0700 |
| commit | 6eb9932668fa6bd8c659484b2d18d8a73713208c (patch) | |
| tree | 6c4b726aaceedc0f28c522457dc14438a86316e9 /tools/binman/test | |
| parent | 5af9ebc4bcbcca91b21257c18cb94c78e7356980 (diff) | |
| download | u-boot-6eb9932668fa6bd8c659484b2d18d8a73713208c.tar.gz u-boot-6eb9932668fa6bd8c659484b2d18d8a73713208c.tar.xz u-boot-6eb9932668fa6bd8c659484b2d18d8a73713208c.zip | |
binman: Support alignment of files
When packing files it is sometimes useful to align the start of each file,
e.g. if the flash driver can only access 32-bit-aligned data. Provides a
new property to support this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/084_files.dts | 2 | ||||
| -rw-r--r-- | tools/binman/test/190_files_align.dts | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/tools/binman/test/084_files.dts b/tools/binman/test/084_files.dts index 83ddb78f8e..8f09afd24e 100644 --- a/tools/binman/test/084_files.dts +++ b/tools/binman/test/084_files.dts @@ -5,7 +5,7 @@ binman { files { pattern = "files/*.dat"; - compress = "none"; + files-compress = "none"; }; }; }; diff --git a/tools/binman/test/190_files_align.dts b/tools/binman/test/190_files_align.dts new file mode 100644 index 0000000000..213ba966d3 --- /dev/null +++ b/tools/binman/test/190_files_align.dts @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0+ +/dts-v1/; + +/ { + binman { + files { + pattern = "files/*.dat"; + files-compress = "none"; + files-align = <4>; + }; + }; +}; |
