From: Erik M. <er...@us...> - 2002-02-07 23:59:39
|
Update of /cvsroot/blob/blob/src/diag In directory usw-pr-cvs1:/tmp/cvs-serv31555 Modified Files: Makefile.am ld-script Removed Files: stack.S Log Message: Same bug fix for diag. Not tested, should work though. Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/src/diag/Makefile.am,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Makefile.am 4 Feb 2002 18:02:42 -0000 1.11 +++ Makefile.am 7 Feb 2002 23:59:37 -0000 1.12 @@ -36,7 +36,6 @@ # be linked in the wrong order! diag_elf32_SOURCES = \ start.S \ - stack.S \ command_hist.c \ commands.c \ initcalls.c \ Index: ld-script =================================================================== RCS file: /cvsroot/blob/blob/src/diag/ld-script,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ld-script 28 Oct 2001 22:14:20 -0000 1.2 +++ ld-script 7 Feb 2002 23:59:37 -0000 1.3 @@ -55,11 +55,15 @@ .bss : { __bss_start = .; /* first the real BSS data */ - *(.bss) + *(.bss) + *(COMMON) /* and next the stack */ . = ALIGN(4); - *(.stack) + + /* allocate an 8kB stack */ + . = . + 8 * 1024; + __stack_end = .; __bss_end = .; } --- stack.S DELETED --- |