commit | 02d708d88c674b7be3b8a8535d5a3acd287cecd5 | [log] [tgz] |
---|---|---|
author | Sam Edwards <cfsworks@gmail.com> | Sat Mar 15 15:18:13 2025 -0700 |
committer | Tom Rini <trini@konsulko.com> | Wed Apr 02 14:33:50 2025 -0600 |
tree | 2eb587dad7472ffa905860a64c4a29dce0604fde | |
parent | 247f05a717260c21a97ff3115bcbfcd062e78720 [diff] |
spl: Align FDT load address While the image size is generally a multiple of 8 bytes, this is not actually guaranteed; some linkers (like LLD) will shave a few bytes off of the end of output sections if there are no content bytes there. Since libfdt imposes a hard rule of 8-byte alignment, make the SPL also be explicit about the alignment when loading the FDT. Signed-off-by: Sam Edwards <CFSworks@gmail.com>