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 317550d..89b0a82 100644 --- a/board/voiceblue/eeprom.lds +++ b/board/voiceblue/eeprom.lds @@ -46,6 +46,6 @@ SECTIONS . = ALIGN(4); __bss_start = .; - .bss : { *(.bss) } + .bss (NOLOAD) : { *(.bss) } _end = .; } diff --git a/board/voiceblue/u-boot.lds b/board/voiceblue/u-boot.lds index f35a3ab..bce925b 100644 --- a/board/voiceblue/u-boot.lds +++ b/board/voiceblue/u-boot.lds @@ -51,6 +51,6 @@ SECTIONS . = ALIGN(4); __bss_start = .; - .bss : { *(.bss) } + .bss (NOLOAD) : { *(.bss) } _end = .; } |