Module Name: src
Committed By: uebayasi
Date: Sun Aug 23 00:53:15 UTC 2015
Modified Files:
src/sys/arch/evbsh3/conf: sh.x sh.x.ICE sh.x.RAM shl.x shl.x.ICE
shl.x.RAM
src/sys/arch/mmeye/conf: sh.x sh.x.ICE sh.x.RAM shl.x
Log Message:
Unfortunately no sh3 kernels (no longer?) use linker scripts, but I dare to
clean up .ctors/.dtors here too.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/evbsh3/conf/sh.x \
src/sys/arch/evbsh3/conf/shl.x
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/evbsh3/conf/sh.x.ICE \
src/sys/arch/evbsh3/conf/sh.x.RAM src/sys/arch/evbsh3/conf/shl.x.ICE \
src/sys/arch/evbsh3/conf/shl.x.RAM
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/mmeye/conf/sh.x
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/mmeye/conf/sh.x.ICE \
src/sys/arch/mmeye/conf/sh.x.RAM src/sys/arch/mmeye/conf/shl.x
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/evbsh3/conf/sh.x
diff -u src/sys/arch/evbsh3/conf/sh.x:1.5 src/sys/arch/evbsh3/conf/sh.x:1.6
--- src/sys/arch/evbsh3/conf/sh.x:1.5 Thu Aug 20 09:46:03 2015
+++ src/sys/arch/evbsh3/conf/sh.x Sun Aug 23 00:53:15 2015
@@ -15,24 +15,14 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- AT (ROM + SIZEOF(.text))
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
- AT (ROM + SIZEOF(.text) + SIZEOF(.tors))
+ AT (ROM + SIZEOF(.text))
{
*(.data)
_edata = . ;
} > ram
.bss :
- AT (ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data))
+ AT (ROM + SIZEOF(.text) + SIZEOF(.data))
{
_bss_start = . ;
*(.bss)
Index: src/sys/arch/evbsh3/conf/shl.x
diff -u src/sys/arch/evbsh3/conf/shl.x:1.5 src/sys/arch/evbsh3/conf/shl.x:1.6
--- src/sys/arch/evbsh3/conf/shl.x:1.5 Thu Aug 20 09:46:03 2015
+++ src/sys/arch/evbsh3/conf/shl.x Sun Aug 23 00:53:15 2015
@@ -15,24 +15,14 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- AT (ROM + SIZEOF(.text))
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
- AT (ROM + SIZEOF(.text) + SIZEOF(.tors))
+ AT (ROM + SIZEOF(.text))
{
*(.data)
_edata = . ;
} > ram
.bss :
- AT (ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data))
+ AT (ROM + SIZEOF(.text) + SIZEOF(.data))
{
_bss_start = . ;
*(.bss)
Index: src/sys/arch/evbsh3/conf/sh.x.ICE
diff -u src/sys/arch/evbsh3/conf/sh.x.ICE:1.3 src/sys/arch/evbsh3/conf/sh.x.ICE:1.4
--- src/sys/arch/evbsh3/conf/sh.x.ICE:1.3 Thu Aug 20 09:46:03 2015
+++ src/sys/arch/evbsh3/conf/sh.x.ICE Sun Aug 23 00:53:15 2015
@@ -12,15 +12,6 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
{
*(.data)
Index: src/sys/arch/evbsh3/conf/sh.x.RAM
diff -u src/sys/arch/evbsh3/conf/sh.x.RAM:1.3 src/sys/arch/evbsh3/conf/sh.x.RAM:1.4
--- src/sys/arch/evbsh3/conf/sh.x.RAM:1.3 Thu Aug 20 09:46:03 2015
+++ src/sys/arch/evbsh3/conf/sh.x.RAM Sun Aug 23 00:53:15 2015
@@ -12,15 +12,6 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
{
*(.data)
Index: src/sys/arch/evbsh3/conf/shl.x.ICE
diff -u src/sys/arch/evbsh3/conf/shl.x.ICE:1.3 src/sys/arch/evbsh3/conf/shl.x.ICE:1.4
--- src/sys/arch/evbsh3/conf/shl.x.ICE:1.3 Thu Aug 20 09:46:03 2015
+++ src/sys/arch/evbsh3/conf/shl.x.ICE Sun Aug 23 00:53:15 2015
@@ -12,15 +12,6 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
{
*(.data)
Index: src/sys/arch/evbsh3/conf/shl.x.RAM
diff -u src/sys/arch/evbsh3/conf/shl.x.RAM:1.3 src/sys/arch/evbsh3/conf/shl.x.RAM:1.4
--- src/sys/arch/evbsh3/conf/shl.x.RAM:1.3 Thu Aug 20 09:46:03 2015
+++ src/sys/arch/evbsh3/conf/shl.x.RAM Sun Aug 23 00:53:15 2015
@@ -12,15 +12,6 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
{
*(.data)
Index: src/sys/arch/mmeye/conf/sh.x
diff -u src/sys/arch/mmeye/conf/sh.x:1.4 src/sys/arch/mmeye/conf/sh.x:1.5
--- src/sys/arch/mmeye/conf/sh.x:1.4 Thu Aug 20 07:13:07 2015
+++ src/sys/arch/mmeye/conf/sh.x Sun Aug 23 00:53:15 2015
@@ -15,24 +15,14 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- AT (ROM + SIZEOF(.text))
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
- AT (ROM + SIZEOF(.text) + SIZEOF(.tors))
+ AT (ROM + SIZEOF(.text))
{
*(.data)
_edata = . ;
} > ram
.bss :
- AT (ROM + SIZEOF(.text) + SIZEOF(.tors) + SIZEOF(.data))
+ AT (ROM + SIZEOF(.text) + SIZEOF(.data))
{
_bss_start = . ;
*(.bss)
Index: src/sys/arch/mmeye/conf/sh.x.ICE
diff -u src/sys/arch/mmeye/conf/sh.x.ICE:1.2 src/sys/arch/mmeye/conf/sh.x.ICE:1.3
--- src/sys/arch/mmeye/conf/sh.x.ICE:1.2 Tue Nov 20 12:56:33 2001
+++ src/sys/arch/mmeye/conf/sh.x.ICE Sun Aug 23 00:53:15 2015
@@ -12,15 +12,6 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
{
*(.data)
Index: src/sys/arch/mmeye/conf/sh.x.RAM
diff -u src/sys/arch/mmeye/conf/sh.x.RAM:1.2 src/sys/arch/mmeye/conf/sh.x.RAM:1.3
--- src/sys/arch/mmeye/conf/sh.x.RAM:1.2 Tue Nov 20 12:56:33 2001
+++ src/sys/arch/mmeye/conf/sh.x.RAM Sun Aug 23 00:53:15 2015
@@ -12,15 +12,6 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
{
*(.data)
Index: src/sys/arch/mmeye/conf/shl.x
diff -u src/sys/arch/mmeye/conf/shl.x:1.2 src/sys/arch/mmeye/conf/shl.x:1.3
--- src/sys/arch/mmeye/conf/shl.x:1.2 Tue Nov 20 12:56:33 2001
+++ src/sys/arch/mmeye/conf/shl.x Sun Aug 23 00:53:15 2015
@@ -13,15 +13,6 @@ SECTIONS
*(.strings)
_etext = . ;
} > ram
- .tors :
- {
- ___ctors = . ;
- *(.ctors)
- ___ctors_end = . ;
- ___dtors = . ;
- *(.dtors)
- ___dtors_end = . ;
- } > ram
.data :
{
*(.data)