<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-12-12)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
<font color='#bb2222'><strong>gedare</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-12-12 Gedare Bloom <gedare@rtems.org>
PR bsps/1988
* shared/startup/linkcmds: Relocate .init and .fini sections closer to
.text.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/sparc64/ChangeLog.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>c/src/lib/libbsp/sparc64/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/sparc64/shared/startup/linkcmds.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>c/src/lib/libbsp/sparc64/shared/startup/linkcmds</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/sparc64/ChangeLog:1.15 rtems/c/src/lib/libbsp/sparc64/ChangeLog:1.16
--- rtems/c/src/lib/libbsp/sparc64/ChangeLog:1.15 Sun Nov 6 14:12:19 2011
+++ rtems/c/src/lib/libbsp/sparc64/ChangeLog Mon Dec 12 12:52:18 2011
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+2011-12-12 Gedare Bloom <gedare@rtems.org>
+
+ PR bsps/1988
+ * shared/startup/linkcmds: Relocate .init and .fini sections closer to
+ .text.
+
</font> 2011-11-06 Gedare Bloom <gedare@rtems.org>
* shared/console/conscfg.c: Whitespace and style fixes.
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/sparc64/shared/startup/linkcmds:1.4 rtems/c/src/lib/libbsp/sparc64/shared/startup/linkcmds:1.5
--- rtems/c/src/lib/libbsp/sparc64/shared/startup/linkcmds:1.4 Thu Oct 6 11:46:36 2011
+++ rtems/c/src/lib/libbsp/sparc64/shared/startup/linkcmds Mon Dec 12 12:52:18 2011
</font><font color='#997700'>@@ -94,6 +94,9 @@
</font> *(BOOTSTRAP);
*(.text*)
<font color='#000088'>+ KEEP (*(.init))
+ KEEP (*(.fini))
+
</font> /*
* Special FreeBSD sysctl sections.
*/
<font color='#997700'>@@ -142,17 +145,12 @@
</font> *(.gnu.linkonce.r*)
_erodata = ALIGN( 0x10 ) ;
<font color='#880000'>- etext = ALIGN(2);
- _etext = . ;
-
- *(.init)
- PROVIDE (_fini = .);
- KEEP (*(.fini))
</font> *(.lit)
*(.shdata)
. = ALIGN (16);
_endtext = . ;
<font color='#000088'>+ _etext = . ;
</font> } > ram<span style="background-color: #FF0000"> </span>
.data : AT (ADDR (.text) + SIZEOF (.text))
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
<font color='#bb2222'><strong>gedare</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-12-12 Gedare Bloom <gedare@rtems.org>
PR bsps/1988
* shared/start/start.S: Add _init and _fini to .init and .fini sections
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/sparc64/ChangeLog.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>c/src/lib/libbsp/sparc64/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/sparc64/shared/start/start.S.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>c/src/lib/libbsp/sparc64/shared/start/start.S</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/sparc64/ChangeLog:1.16 rtems/c/src/lib/libbsp/sparc64/ChangeLog:1.17
--- rtems/c/src/lib/libbsp/sparc64/ChangeLog:1.16 Mon Dec 12 12:52:18 2011
+++ rtems/c/src/lib/libbsp/sparc64/ChangeLog Mon Dec 12 13:00:47 2011
</font><font color='#997700'>@@ -1,6 +1,11 @@
</font> 2011-12-12 Gedare Bloom <gedare@rtems.org>
PR bsps/1988
<font color='#000088'>+ * shared/start/start.S: Add _init and _fini to .init and .fini sections
+
+2011-12-12 Gedare Bloom <gedare@rtems.org>
+
+ PR bsps/1988
</font> * shared/startup/linkcmds: Relocate .init and .fini sections closer to
.text.
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/sparc64/shared/start/start.S:1.2 rtems/c/src/lib/libbsp/sparc64/shared/start/start.S:1.3
--- rtems/c/src/lib/libbsp/sparc64/shared/start/start.S:1.2 Thu Oct 6 11:46:36 2011
+++ rtems/c/src/lib/libbsp/sparc64/shared/start/start.S Mon Dec 12 13:00:48 2011
</font><font color='#997700'>@@ -166,12 +166,16 @@
</font> param_space:
.space 8
<font color='#880000'>- .global _fini
- _fini:
</font><font color='#000088'>+.section .fini
+ .global _fini
+ _fini:
</font> nop
<font color='#000088'>+ retl
</font> nop
<font color='#880000'>- .global _init
- _init:
</font><font color='#000088'>+.section .init
+ .global _init
+ _init:
</font> nop
<font color='#000088'>+ retl
</font> nop
</pre>
<p> </p>
<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>