Update of /cvsroot/blob/blob/src/blob
In directory usw-pr-cvs1:/tmp/cvs-serv15494
Modified Files:
stack.S
Log Message:
Stack can grow again to 8kB
Index: stack.S
===================================================================
RCS file: /cvsroot/blob/blob/src/blob/stack.S,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- stack.S 2001/10/29 20:27:09 1.2
+++ stack.S 2001/11/04 23:16:58 1.3
@@ -30,12 +30,4 @@
.section ".stack"
/* 8kB stack should be enough */
- /* .space (8 * 1024) */
-
- /* FIXME: This is a temporary solution to prevent the "load
- kernel" command overwriting the stack when you compile blob
- with --enable-all-features. The correct solution is to load
- blob somewhere out of the way, but that's for later. -- Erik
- */
-#warning "FIXME: stack should be 8kB after we moved blob to a different location!"
- .space (4 * 1024)
+ .space (8 * 1024)
|