diff options
author | Nick Clifton <nickc@redhat.com> | 2013-01-23 11:56:02 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-01-23 11:56:02 +0000 |
commit | b176ded116acd2644ea3f7185ef53a192fa37722 (patch) | |
tree | f8090c89d1bdabe3d692219edc85f5741dc9a71c /ld | |
parent | a6dea726b0f30bee96e25711fd37e493979842ba (diff) | |
download | fsf-binutils-gdb-b176ded116acd2644ea3f7185ef53a192fa37722.zip fsf-binutils-gdb-b176ded116acd2644ea3f7185ef53a192fa37722.tar.gz fsf-binutils-gdb-b176ded116acd2644ea3f7185ef53a192fa37722.tar.bz2 |
PR ld/15037
* scripttempl/avr.sc (.eeprom): Keep it.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/scripttempl/avr.sc | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 4992e1c..d62950e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2013-01-23 Georg-Johann Lay <avr@gjlay.de> + + PR ld/15037 + * scripttempl/avr.sc (.eeprom): Keep it. + 2013-01-23 Leif Ekblad <leif@rdos.net> * Makefile.am (ALL_64_EMULATION_SOURCES): Add eelf64rdos.c. diff --git a/ld/scripttempl/avr.sc b/ld/scripttempl/avr.sc index 6ba987b..10ac27f 100644 --- a/ld/scripttempl/avr.sc +++ b/ld/scripttempl/avr.sc @@ -198,7 +198,8 @@ SECTIONS .eeprom ${RELOCATING-0}: { - *(.eeprom*) + /* See .data above... */ + KEEP(*(.eeprom*)) ${RELOCATING+ __eeprom_end = . ; } } ${RELOCATING+ > eeprom} |