mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-03 18:23:34 +00:00

The base address of the ELF containing symbols is normally added to any symbols written, so that the value points to the correct address in memory when everything is loaded. When the binary resides on disk, a different offset may be needed, typically 0. Provide a way to specify this. Signed-off-by: Simon Glass <sjg@chromium.org>
24 lines
277 B
Text
24 lines
277 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
pad-byte = <0xff>;
|
|
u-boot-spl {
|
|
symbols-base = <0>;
|
|
};
|
|
|
|
u-boot {
|
|
offset = <0x38>;
|
|
no-expanded;
|
|
};
|
|
|
|
u-boot-spl2 {
|
|
type = "u-boot-spl";
|
|
};
|
|
};
|
|
};
|