Fixed the mess with all the different stacks


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@204 a1c6a512-1295-4272-9138-f99709370657
diff --git a/gdb/linker.cfg b/gdb/linker.cfg
index 621492a..5d5334b 100644
--- a/gdb/linker.cfg
+++ b/gdb/linker.cfg
@@ -10,16 +10,17 @@
         *(.rodata)
     }
 
-    .bss :
-    {
-       _stack = . + 0x1000;
-    }
-
     .text :
     {
         *(.text)
     }
 
+    .bss :
+    {
+       _stack = . + 0x1000;
+       _stub_stack = _stack + 0x1000;
+    }
+
     .pad 0x0900C800 :
     {
         LONG(0);