diff options
Diffstat (limited to 'board/voiceblue')
-rw-r--r-- | board/voiceblue/eeprom.lds | 2 | ||||
-rw-r--r-- | board/voiceblue/u-boot.lds | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/voiceblue/eeprom.lds b/board/voiceblue/eeprom.lds index 89b0a82..f3be320 100644 --- a/board/voiceblue/eeprom.lds +++ b/board/voiceblue/eeprom.lds @@ -46,6 +46,6 @@ SECTIONS . = ALIGN(4); __bss_start = .; - .bss (NOLOAD) : { *(.bss) } + .bss (NOLOAD) : { *(.bss) . = ALIGN(4); } _end = .; } diff --git a/board/voiceblue/u-boot.lds b/board/voiceblue/u-boot.lds index bce925b..8bf1990 100644 --- a/board/voiceblue/u-boot.lds +++ b/board/voiceblue/u-boot.lds @@ -51,6 +51,6 @@ SECTIONS . = ALIGN(4); __bss_start = .; - .bss (NOLOAD) : { *(.bss) } + .bss (NOLOAD) : { *(.bss) . = ALIGN(4); } _end = .; } |