libpayload: remove unneeded stack stuff
Following on the previous code to streamline the libpayload init code, this removes the now unneeded stack structures. Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3217 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
committed by
Uwe Hermann
parent
6c44dfb649
commit
3860404b65
@@ -73,17 +73,12 @@ SECTIONS
|
||||
. = ALIGN(16);
|
||||
_eheap = .;
|
||||
|
||||
_stack = .;
|
||||
_estack = .;
|
||||
. += STACK_SIZE;
|
||||
. = ALIGN(16);
|
||||
_stack = .;
|
||||
}
|
||||
|
||||
/* Put the static bits of our inital stack at the bottom */
|
||||
.istack : {
|
||||
*(.istack)
|
||||
}
|
||||
|
||||
_end = .;
|
||||
|
||||
/DISCARD/ : { *(.comment) *(.note) *(.note.*) }
|
||||
|
Reference in New Issue
Block a user