diff options
author | Jordan Crouse <jordan.crouse@amd.com> | 2008-04-05 01:07:27 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-04-05 01:07:27 +0000 |
commit | 3860404b651d7c92c86a9789f9c163efb7ec9c8a (patch) | |
tree | e6bed51ebcb9a0959806b790d0e517713f900915 /payloads/libpayload/i386/head.S | |
parent | 6c44dfb6497941cf844feef79aafec23f32635b2 (diff) |
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
Diffstat (limited to 'payloads/libpayload/i386/head.S')
-rw-r--r-- | payloads/libpayload/i386/head.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/i386/head.S b/payloads/libpayload/i386/head.S index e548329c66..8dc31aa54d 100644 --- a/payloads/libpayload/i386/head.S +++ b/payloads/libpayload/i386/head.S @@ -54,9 +54,9 @@ _init: movl %esp, %esi /* Setup new stack. */ - movl _istack, %ebx + movl $_stack, %ebx - movl (%ebx), %esp + movl %ebx, %esp /* Save old stack pointer. */ pushl %esi |