Work around stack size breakage observed on fam10.
Signed-off-by: Zheng Bao <zheng.bao@amd.com> Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5166 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
2933651285
commit
be07eb29bc
|
@ -104,7 +104,7 @@ SECTIONS
|
||||||
.stack . : {
|
.stack . : {
|
||||||
/* Reserve a stack for each possible cpu */
|
/* Reserve a stack for each possible cpu */
|
||||||
/* the stack for ap will be put after pgtbl in 1M to CONFIG_RAMTOP range when VGA and ROM_RUN and CONFIG_RAMTOP>1M*/
|
/* the stack for ap will be put after pgtbl in 1M to CONFIG_RAMTOP range when VGA and ROM_RUN and CONFIG_RAMTOP>1M*/
|
||||||
. = ((CONFIG_CONSOLE_VGA || CONFIG_PCI_ROM_RUN)&&(CONFIG_RAMBASE<0x100000)&&(CONFIG_RAMTOP>0x100000) ) ? CONFIG_STACK_SIZE : (CONFIG_MAX_CPUS*CONFIG_STACK_SIZE);
|
. += ((CONFIG_CONSOLE_VGA || CONFIG_PCI_ROM_RUN)&&(CONFIG_RAMBASE<0x100000)&&(CONFIG_RAMTOP>0x100000) ) ? CONFIG_STACK_SIZE : (CONFIG_MAX_CPUS*CONFIG_STACK_SIZE);
|
||||||
}
|
}
|
||||||
_estack = .;
|
_estack = .;
|
||||||
_heap = .;
|
_heap = .;
|
||||||
|
|
Loading…
Reference in New Issue