mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-27 06:58:19 +00:00
2005-05-03 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix overflow of _CPU_Interrupt_stack_high calculation.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2005-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix
|
||||
overflow of _CPU_Interrupt_stack_high calculation.
|
||||
|
||||
2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||
|
||||
* Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
|
||||
|
||||
@@ -189,8 +189,8 @@ SECTIONS
|
||||
. = 0x00480000 ;
|
||||
PROVIDE(_WorkSpaceEnd = .);
|
||||
|
||||
_CPU_Interrupt_stack_low = 0xFFFFF000 ;
|
||||
_CPU_Interrupt_stack_high = _CPU_Interrupt_stack_low + 4096 ;
|
||||
_CPU_Interrupt_stack_low = 0xFFFFF000;
|
||||
_CPU_Interrupt_stack_high = 0xFFFFFFFF;
|
||||
|
||||
/* Stabs debugging sections. */
|
||||
.stab 0 : { *(.stab) }
|
||||
|
||||
@@ -184,8 +184,8 @@ SECTIONS
|
||||
. = 0x00480000 ;
|
||||
PROVIDE(_WorkSpaceEnd = .);
|
||||
|
||||
_CPU_Interrupt_stack_low = 0xFFFFF000 ;
|
||||
_CPU_Interrupt_stack_high = _CPU_Interrupt_stack_low + 4096 ;
|
||||
_CPU_Interrupt_stack_low = 0xFFFFF000;
|
||||
_CPU_Interrupt_stack_high = 0xFFFFFFFF;
|
||||
|
||||
/* Stabs debugging sections. */
|
||||
.stab 0 : { *(.stab) }
|
||||
|
||||
@@ -185,8 +185,8 @@ SECTIONS
|
||||
. = 0x00480000 ;
|
||||
PROVIDE(_WorkSpaceEnd = .);
|
||||
|
||||
_CPU_Interrupt_stack_low = 0xFFFFF000 ;
|
||||
_CPU_Interrupt_stack_high = _CPU_Interrupt_stack_low + 4096 ;
|
||||
_CPU_Interrupt_stack_low = 0xFFFFF000;
|
||||
_CPU_Interrupt_stack_high = 0xFFFFFFFF;
|
||||
|
||||
/* Stabs debugging sections. */
|
||||
.stab 0 : { *(.stab) }
|
||||
|
||||
Reference in New Issue
Block a user