mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
ARM: zynq: Align bss and end of u-boot image to 64bits
The main reason is that DT memory reserved code is expecting DT to be 64bit
aligned. For more information take a look at commit 5bd5ee02b2
("xilinx:
zynqmp: Check that DT is 64bit aligned").
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/9f3688cda188d8ea0b462df2aa08a10ddcc9c149.1661938136.git.michal.simek@amd.com
This commit is contained in:
parent
a27278f054
commit
be3a73c0c4
1 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ SECTIONS
|
|||
*(.__efi_runtime_rel_stop)
|
||||
}
|
||||
|
||||
. = ALIGN(4);
|
||||
. = ALIGN(8);
|
||||
.image_copy_end :
|
||||
{
|
||||
*(.__image_copy_end)
|
||||
|
@ -114,7 +114,7 @@ SECTIONS
|
|||
|
||||
.bss __bss_base (OVERLAY) : {
|
||||
*(.bss*)
|
||||
. = ALIGN(4);
|
||||
. = ALIGN(8);
|
||||
__bss_limit = .;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue