summaryrefslogtreecommitdiffstats
path: root/sys/boot/arm/uboot/ldscript.arm
diff options
context:
space:
mode:
Diffstat (limited to 'sys/boot/arm/uboot/ldscript.arm')
-rw-r--r--sys/boot/arm/uboot/ldscript.arm5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/boot/arm/uboot/ldscript.arm b/sys/boot/arm/uboot/ldscript.arm
index 1eb10a8..8eb604c 100644
--- a/sys/boot/arm/uboot/ldscript.arm
+++ b/sys/boot/arm/uboot/ldscript.arm
@@ -6,6 +6,7 @@ SECTIONS
{
/* Read-only sections, merged into text segment: */
. = UBLDR_LOADADDR + SIZEOF_HEADERS;
+ . = ALIGN(8);
.text :
{
*(.text)
@@ -47,8 +48,8 @@ SECTIONS
.rodata1 : { *(.rodata1) }
.sdata2 : { *(.sdata2) }
.sbss2 : { *(.sbss2) }
- /* Adjust the address for the data segment to the next page up. */
- . = ((. + 0x1000) & ~(0x1000 - 1));
+ /* Adjust the address for the data segment to the doubleword boundary. */
+ . = ALIGN(8);
.data :
{
*(.data)
OpenPOWER on IntegriCloud