mirror of
https://github.com/ipxe/ipxe
synced 2025-12-20 12:00:19 +03:00
Move stack out to separate object, so that having a stack doesn't drag in
setup.S.
This commit is contained in:
@@ -158,12 +158,3 @@ setup:
|
|||||||
popfl
|
popfl
|
||||||
lret
|
lret
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Internal stack
|
|
||||||
****************************************************************************
|
|
||||||
*/
|
|
||||||
.section ".stack"
|
|
||||||
.align 8
|
|
||||||
_stack:
|
|
||||||
.space 4096
|
|
||||||
_estack:
|
|
||||||
|
|||||||
13
src/arch/i386/core/stack.S
Normal file
13
src/arch/i386/core/stack.S
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
.arch i386
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Internal stack
|
||||||
|
****************************************************************************
|
||||||
|
*/
|
||||||
|
.section ".stack"
|
||||||
|
.align 8
|
||||||
|
.globl _stack
|
||||||
|
_stack:
|
||||||
|
.space 4096
|
||||||
|
.globl _estack
|
||||||
|
_estack:
|
||||||
Reference in New Issue
Block a user