summaryrefslogtreecommitdiff
path: root/arch/arm/lpc17xx/ldscript
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/lpc17xx/ldscript')
-rw-r--r--arch/arm/lpc17xx/ldscript7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/lpc17xx/ldscript b/arch/arm/lpc17xx/ldscript
index 677d063..14fe819 100644
--- a/arch/arm/lpc17xx/ldscript
+++ b/arch/arm/lpc17xx/ldscript
@@ -172,23 +172,24 @@ SECTIONS
*(.shdata)
*(.data .data.* .gnu.linkonce.d.*)
*(.ram)
- . = ALIGN (8);
+ . = ALIGN (32);
_edata = .;
} >ram AT>rom
.data_end :
{
- . = ALIGN(8);
+ . = ALIGN(32);
__rom_data_end = .;
} > rom
.bss :
{
+ . = ALIGN(32);
__bss_ram_begin = .;
*(.shbss)
*(.bss .bss.* .gnu.linkonce.b.*)
*(COMMON)
*(.ram.b)
- . = ALIGN (8);
+ . = ALIGN(32);
__bss_ram_end = .;
_end = .;
__end = .;