mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
5ff9fedc9b
Sometimes it is useful to specify the default alignment for all entries in a section, such as when word-alignment is necessary, for example. It is tedious and error-prone to specify this individually for each section. Add a property to control this for a section. Signed-off-by: Simon Glass <sjg@chromium.org>
30 lines
297 B
Text
30 lines
297 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
align-default = <8>;
|
|
u-boot {
|
|
};
|
|
|
|
u-boot-align {
|
|
type = "u-boot";
|
|
};
|
|
|
|
section {
|
|
align = <32>;
|
|
u-boot {
|
|
};
|
|
|
|
u-boot-nodtb {
|
|
};
|
|
};
|
|
|
|
u-boot-nodtb {
|
|
};
|
|
};
|
|
};
|