mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
stm32mp15: Avoid writing symbols in SPL
These boards use SPL in a mkimage entry and apparently access the symbol containing the image position of U-Boot, but put U-Boot in another image. This means that binman is unable to fill in the symbol correctly in the SPL binary. This doesn't matter at present since mkimage doesn't support symbol writing. But with the upcoming conversion to a section, it will. So add a property to disable symbol writing. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4649beae3e
commit
8163907adf
1 changed files with 1 additions and 0 deletions
|
@ -226,6 +226,7 @@
|
|||
mkimage {
|
||||
args = "-T stm32image -a 0x2ffc2500 -e 0x2ffc2500";
|
||||
u-boot-spl {
|
||||
no-write-symbols;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue