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:
Jordan Crouse
2008-04-05 01:07:27 +00:00
committed by Uwe Hermann
parent 6c44dfb649
commit 3860404b65
3 changed files with 3 additions and 25 deletions

View File

@@ -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.*) }