mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
6eb9932668
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>
12 lines
162 B
Text
12 lines
162 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
binman {
|
|
files {
|
|
pattern = "files/*.dat";
|
|
files-compress = "none";
|
|
files-align = <4>;
|
|
};
|
|
};
|
|
};
|