2006-02-08 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add
	sections required by newer gcc versions.
This commit is contained in:
Joel Sherrill
2006-02-08 12:28:03 +00:00
parent ae3ab7451b
commit 869eaa9734
4 changed files with 11 additions and 12 deletions

View File

@@ -1,3 +1,8 @@
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add
sections required by newer gcc versions.
2006-01-11 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Add preinstall.am.

View File

@@ -47,8 +47,7 @@ SECTIONS
} =0
.text :
{
*(.text)
*(.text.*)
*(.text*)
/*
* Special FreeBSD sysctl sections.
@@ -135,8 +134,7 @@ SECTIONS
{
__bss_start = .;
*(.dynbss)
*(.bss)
*(.bss.*)
*(.bss*)
*(COMMON)
/* Align here to ensure that the .bss section occupies space up to
_end. Align after .bss to ensure correct alignment even if the

View File

@@ -59,8 +59,7 @@ SECTIONS
} =0
.text :
{
*(.text)
*(.text.*)
*(.text*)
/*
* Special FreeBSD sysctl sections.
@@ -142,8 +141,7 @@ SECTIONS
{
__bss_start = .;
*(.dynbss)
*(.bss)
*(.bss.*)
*(.bss*)
*(COMMON)
/* Align here to ensure that the .bss section occupies space up to
_end. Align after .bss to ensure correct alignment even if the

View File

@@ -64,8 +64,7 @@ SECTIONS
.text : AT(copy_start_in_rom)
{
copy_start = .;
*(.text)
*(.text.*)
*(.text*)
/*
* Special FreeBSD sysctl sections.
@@ -145,8 +144,7 @@ SECTIONS
{
__bss_start = .;
*(.dynbss)
*(.bss)
*(.bss.*)
*(.bss*)
*(COMMON)
/* Align here to ensure that the .bss section occupies space up to
_end. Align after .bss to ensure correct alignment even if the