Commit 2c31c341 authored by Denys Vlasenko's avatar Denys Vlasenko Committed by Michal Marek

Rename .data.initvect to .data..initvect.

Signed-off-by: default avatarDenys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent c273fb3b
...@@ -57,7 +57,7 @@ SECTIONS { ...@@ -57,7 +57,7 @@ SECTIONS {
.romvec : { .romvec : {
__rom_start = . ; __rom_start = . ;
_romvec = .; _romvec = .;
*(.data.initvect) *(.data..initvect)
} > romvec } > romvec
#endif #endif
......
...@@ -280,7 +280,7 @@ _dprbase: ...@@ -280,7 +280,7 @@ _dprbase:
* and then overwritten as needed. * and then overwritten as needed.
*/ */
.section ".data.initvect","awx" .section ".data..initvect","awx"
.long RAMEND /* Reset: Initial Stack Pointer - 0. */ .long RAMEND /* Reset: Initial Stack Pointer - 0. */
.long _start /* Reset: Initial Program Counter - 1. */ .long _start /* Reset: Initial Program Counter - 1. */
.long buserr /* Bus Error - 2. */ .long buserr /* Bus Error - 2. */
......
...@@ -291,7 +291,7 @@ _dprbase: ...@@ -291,7 +291,7 @@ _dprbase:
* and then overwritten as needed. * and then overwritten as needed.
*/ */
.section ".data.initvect","awx" .section ".data..initvect","awx"
.long RAMEND /* Reset: Initial Stack Pointer - 0. */ .long RAMEND /* Reset: Initial Stack Pointer - 0. */
.long _start /* Reset: Initial Program Counter - 1. */ .long _start /* Reset: Initial Program Counter - 1. */
.long buserr /* Bus Error - 2. */ .long buserr /* Bus Error - 2. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment