* mips/ddb.ld: KEEP .init and .fini.
* mips/ddb-kseg0.ld: Likewise.
This commit is contained in:
parent
bc63ea872c
commit
c50e457724
|
@ -1,3 +1,8 @@
|
||||||
|
2002-10-07 Richard Sandiford <rsandifo@redhat.com>
|
||||||
|
|
||||||
|
* mips/ddb.ld: KEEP .init and .fini.
|
||||||
|
* mips/ddb-kseg0.ld: Likewise.
|
||||||
|
|
||||||
2002-08-01 Chris Demetriou <cgd@broadcom.com>
|
2002-08-01 Chris Demetriou <cgd@broadcom.com>
|
||||||
|
|
||||||
* mips/cfe.ld (STARTUP): New definition.
|
* mips/cfe.ld (STARTUP): New definition.
|
||||||
|
|
|
@ -33,7 +33,7 @@ SECTIONS
|
||||||
. = 0x80100000;
|
. = 0x80100000;
|
||||||
.text : {
|
.text : {
|
||||||
_ftext = . ;
|
_ftext = . ;
|
||||||
*(.init)
|
KEEP (*(.init))
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
|
@ -43,7 +43,7 @@ SECTIONS
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
*(.rel.sdata)
|
*(.rel.sdata)
|
||||||
PROVIDE (__runtime_reloc_stop = .);
|
PROVIDE (__runtime_reloc_stop = .);
|
||||||
*(.fini)
|
KEEP (*(.fini))
|
||||||
etext = .;
|
etext = .;
|
||||||
_etext = .;
|
_etext = .;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,7 +33,7 @@ SECTIONS
|
||||||
. = 0xA0100000;
|
. = 0xA0100000;
|
||||||
.text : {
|
.text : {
|
||||||
_ftext = . ;
|
_ftext = . ;
|
||||||
*(.init)
|
KEEP (*(.init))
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
|
@ -43,7 +43,7 @@ SECTIONS
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
*(.rel.sdata)
|
*(.rel.sdata)
|
||||||
PROVIDE (__runtime_reloc_stop = .);
|
PROVIDE (__runtime_reloc_stop = .);
|
||||||
*(.fini)
|
KEEP (*(.fini))
|
||||||
etext = .;
|
etext = .;
|
||||||
_etext = .;
|
_etext = .;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue