2007-12-18 Joel Sherrill <joel.sherrill@OARcorp.com>

* startup/linkcmds: Spacing.
	* startup/linkcmds.brs5l: Add wildcard to .bss section.
This commit is contained in:
Joel Sherrill
2007-12-18 14:29:05 +00:00
parent 55216fafdf
commit 02c54f5ee5
3 changed files with 7 additions and 2 deletions
@@ -1,3 +1,8 @@
2007-12-18 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds: Spacing.
* startup/linkcmds.brs5l: Add wildcard to .bss section.
2007-12-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* irq/irq.c, startup/bspclean.c, startup/bspstart.c: I give. The code
@@ -253,7 +253,6 @@ SECTIONS
. = ALIGN (16);
_startmalloc = .;
} >ram
/*
* Interrupt stack setup
@@ -236,7 +236,8 @@ SECTIONS
.bss :
{
bss.start = .;
*(.bss) *(.sbss) *(COMMON)
*(.bss .bss* .gnu.linkonce.b*)
*(.sbss*) *(COMMON)
. = ALIGN(4);
bss.end = .;
} > ram