diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2011-08-22 16:20:11 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2011-08-31 14:24:59 -0500 |
commit | 0ebac914541254c4b9ee2a271f26cd67fc2b94a0 (patch) | |
tree | 872be77d5870ea788513d8cb044f837904ddf8cc /src/kernel/makefile | |
parent | f7b7b56dea28dd69a44a877f7b7073c4496ced9e (diff) | |
download | blackbird-hostboot-0ebac914541254c4b9ee2a271f26cd67fc2b94a0.tar.gz blackbird-hostboot-0ebac914541254c4b9ee2a271f26cd67fc2b94a0.zip |
Dynamic stack support.
- Create stack segment.
- Allocate stack blocks on stack create.
Change-Id: Ida90055afb68f208c479b5fdc19d3d931d026105
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/271
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/kernel/makefile')
-rw-r--r-- | src/kernel/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/makefile b/src/kernel/makefile index 24052a695..a0f1e2d7f 100644 --- a/src/kernel/makefile +++ b/src/kernel/makefile @@ -25,7 +25,7 @@ ROOTPATH = ../.. OBJS = start.o kernel.o console.o pagemgr.o heapmgr.o taskmgr.o cpumgr.o OBJS += syscall.o scheduler.o spinlock.o exception.o vmmmgr.o timemgr.o OBJS += futexmgr.o ptmgr.o segmentmgr.o devicesegment.o basesegment.o -OBJS += block.o cpuid.o misc.o msghandler.o blockmsghdlr.o +OBJS += block.o cpuid.o misc.o msghandler.o blockmsghdlr.o stacksegment.o include ${ROOTPATH}/config.mk |