Update of /cvsroot/blob/blob/src/blob
In directory usw-pr-cvs1:/tmp/cvs-serv30050
Modified Files:
stack.S
Log Message:
Temporary solution to avoid the kernel overwriting our stack
Index: stack.S
===================================================================
RCS file: /cvsroot/blob/blob/src/blob/stack.S,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- stack.S 2001/10/28 20:34:41 1.1
+++ stack.S 2001/10/29 20:27:09 1.2
@@ -30,4 +30,12 @@
.section ".stack"
/* 8kB stack should be enough */
- .space (8 * 1024)
+ /* .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)
|