Add .jcr section mapping.
This commit is contained in:
parent
c448f78fd5
commit
08c76ba660
|
@ -1,3 +1,9 @@
|
|||
2003-04-16 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* xstormy16/sim_high.ld: Add .jcr section mapping.
|
||||
* xstormy16/eva_stub.ld: Likewise.
|
||||
* xstormy16/eva_app.ld: Likewise.
|
||||
|
||||
2003-04-09 Chris Demetriou <cgd@broadcom.com>
|
||||
|
||||
* mips/cfe.c (_flush_cache): New function.
|
||||
|
|
|
@ -52,6 +52,7 @@ SECTIONS
|
|||
} > RAM
|
||||
.eh_frame : { KEEP (*(.eh_frame)) } > RAM
|
||||
.gcc_except_table : { *(.gcc_except_table) } > RAM
|
||||
.jcr : { *(.jcr) } > RAM
|
||||
.plt : { *(.plt) } > RAM
|
||||
_edata = .;
|
||||
PROVIDE (edata = .);
|
||||
|
|
|
@ -54,6 +54,7 @@ SECTIONS
|
|||
} > ROM
|
||||
.eh_frame : { KEEP (*(.eh_frame)) } > ROM
|
||||
.gcc_except_table : { *(.gcc_except_table) } > ROM
|
||||
.jcr : { *(.jcr) } > ROM
|
||||
.plt : { *(.plt) } > ROM
|
||||
.text :
|
||||
{
|
||||
|
|
|
@ -73,6 +73,7 @@ SECTIONS
|
|||
} > LOROM
|
||||
.eh_frame : { KEEP (*(.eh_frame)) } > LOROM
|
||||
.gcc_except_table : { *(.gcc_except_table) } > LOROM
|
||||
.jcr : { *(.jcr) } > LOROM
|
||||
.plt : { *(.plt) } > LOROM
|
||||
.text :
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue