mirror of https://github.com/ipxe/ipxe.git
Move stack out to separate object, so that having a stack doesn't drag in
setup.S.pull/1/head
parent
5463169c1a
commit
8f62b39c03
|
@ -158,12 +158,3 @@ setup:
|
||||||
popfl
|
popfl
|
||||||
lret
|
lret
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Internal stack
|
|
||||||
****************************************************************************
|
|
||||||
*/
|
|
||||||
.section ".stack"
|
|
||||||
.align 8
|
|
||||||
_stack:
|
|
||||||
.space 4096
|
|
||||||
_estack:
|
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
.arch i386
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Internal stack
|
||||||
|
****************************************************************************
|
||||||
|
*/
|
||||||
|
.section ".stack"
|
||||||
|
.align 8
|
||||||
|
.globl _stack
|
||||||
|
_stack:
|
||||||
|
.space 4096
|
||||||
|
.globl _estack
|
||||||
|
_estack:
|
Loading…
Reference in New Issue