diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2015-02-06 23:06:48 +0100 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2015-02-17 22:54:38 +0100 |
commit | a752a8b4c49d67daa4ea9f9ebac3972bb1c2328b (patch) | |
tree | 145248ad901cd8fcfbaa385345c270fdbea14647 /arch/avr32/cpu | |
parent | c722f0b026249385bbbcec4f5be9bd3abd69342c (diff) | |
download | u-boot-a752a8b4c49d67daa4ea9f9ebac3972bb1c2328b.tar.gz |
avr32: add generic board support
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'arch/avr32/cpu')
-rw-r--r-- | arch/avr32/cpu/u-boot.lds | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/avr32/cpu/u-boot.lds b/arch/avr32/cpu/u-boot.lds index cb29a22b1e..b0180e3534 100644 --- a/arch/avr32/cpu/u-boot.lds +++ b/arch/avr32/cpu/u-boot.lds @@ -48,9 +48,11 @@ SECTIONS _edata = .; .bss (NOLOAD) : { + __bss_start = .; *(.bss) *(.bss.*) } . = ALIGN(8); __bss_end = .; + __init_end = .; } |