2003-01-20 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds.rom, startup/linkcmds.rom2ram: Add FreeBSD sysctl()
	sections.
This commit is contained in:
Joel Sherrill
2003-01-20 20:07:34 +00:00
parent 646e0008d2
commit b53261f0b0
3 changed files with 27 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2003-01-20 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds.rom, startup/linkcmds.rom2ram: Add FreeBSD sysctl()
sections.
2003-01-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Reflect changes to libcpu/sh/*.

View File

@@ -61,6 +61,17 @@ SECTIONS
{
*(.text)
*(.text.*)
/*
* Special FreeBSD sysctl sections.
*/
. = ALIGN (16);
__start_set_sysctl_set = .;
*(set_sysctl_*);
__stop_set_sysctl_set = ABSOLUTE(.);
*(set_domain_*);
*(set_pseudo_*);
/* .gnu.warning sections are handled specially by elf32.em. */
*(.gnu.warning)
*(.gnu.linkonce.t*)

View File

@@ -66,6 +66,17 @@ SECTIONS
copy_start = .;
*(.text)
*(.text.*)
/*
* Special FreeBSD sysctl sections.
*/
. = ALIGN (16);
__start_set_sysctl_set = .;
*(set_sysctl_*);
__stop_set_sysctl_set = ABSOLUTE(.);
*(set_domain_*);
*(set_pseudo_*);
/* .gnu.warning sections are handled specially by elf32.em. */
*(.gnu.warning)
*(.gnu.linkonce.t*)