[coreboot] [FILO] r101 - trunk/filo/i386

svn at coreboot.org svn at coreboot.org
Sat Jul 18 16:40:16 CEST 2009


Author: stepan
Date: 2009-07-18 16:40:15 +0200 (Sat, 18 Jul 2009)
New Revision: 101

Modified:
   trunk/filo/i386/ldscript
Log:
Set stack and heap size for filo to reasonable values.
Also fix the comment to match the values.


Modified: trunk/filo/i386/ldscript
===================================================================
--- trunk/filo/i386/ldscript	2009-07-18 14:39:30 UTC (rev 100)
+++ trunk/filo/i386/ldscript	2009-07-18 14:40:15 UTC (rev 101)
@@ -26,9 +26,9 @@
 
 ENTRY(entry)
 
-/* 32KB heap and 16KB stack */
-HEAP_SIZE = 3276800;
-STACK_SIZE = 163840;
+/* 1024KB heap and 64KB stack */
+HEAP_SIZE = 1 * 1024 * 1024;
+STACK_SIZE = 64 * 1024;
 
 SECTIONS
 {





More information about the coreboot mailing list