2001-11-14 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds: Fixed syntax error in my previous addition
	of __init.
This commit is contained in:
Joel Sherrill
2001-11-15 15:48:08 +00:00
parent ffcb102fd9
commit 4fa90c0b0e
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2001-11-14 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Fixed syntax error in my previous addition
of __init.
2001-11-13 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Added _init, and _fini symbols.

View File

@@ -58,8 +58,8 @@ SECTIONS
*(.lit)
*(.shdata)
_init = .; __init=.; *(.init)
_fini = .; __fini=.; *(.fini)
_init = .; __init = .; *(.init)
_fini = .; __fini = .; *(.fini)
_endtext = ALIGN(0x10);
text.end = .;
} > RAM