diff options
Diffstat (limited to 'board/netstar')
-rw-r--r-- | board/netstar/eeprom.lds | 2 | ||||
-rw-r--r-- | board/netstar/u-boot.lds | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/netstar/eeprom.lds b/board/netstar/eeprom.lds index 317550dbad0..89b0a8209cc 100644 --- a/board/netstar/eeprom.lds +++ b/board/netstar/eeprom.lds @@ -46,6 +46,6 @@ SECTIONS . = ALIGN(4); __bss_start = .; - .bss : { *(.bss) } + .bss (NOLOAD) : { *(.bss) } _end = .; } diff --git a/board/netstar/u-boot.lds b/board/netstar/u-boot.lds index 8317f72d06d..39646e6e85b 100644 --- a/board/netstar/u-boot.lds +++ b/board/netstar/u-boot.lds @@ -50,6 +50,6 @@ SECTIONS . = ALIGN(4); __bss_start = .; - .bss : { *(.bss) } + .bss (NOLOAD) : { *(.bss) } _end = .; } |