Changeset b53261f0 in rtems


Ignore:
Timestamp:
01/20/03 20:07:34 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
296cc30e
Parents:
646e0008
Message:

2003-01-20 Joel Sherrill <joel@…>

  • startup/linkcmds.rom, startup/linkcmds.rom2ram: Add FreeBSD sysctl() sections.
Location:
c/src/lib/libbsp/sh/gensh4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/sh/gensh4/ChangeLog

    r646e0008 rb53261f0  
     12003-01-20      Joel Sherrill <joel@OARcorp.com>
     2
     3        * startup/linkcmds.rom, startup/linkcmds.rom2ram: Add FreeBSD sysctl()
     4        sections.
     5
    162003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • c/src/lib/libbsp/sh/gensh4/startup/linkcmds.rom

    r646e0008 rb53261f0  
    6262    *(.text)
    6363    *(.text.*)
     64
     65    /*
     66     * Special FreeBSD sysctl sections.
     67     */
     68    . = ALIGN (16);
     69    __start_set_sysctl_set = .;
     70    *(set_sysctl_*);
     71    __stop_set_sysctl_set = ABSOLUTE(.);
     72    *(set_domain_*);
     73    *(set_pseudo_*);
     74
    6475    /* .gnu.warning sections are handled specially by elf32.em.  */
    6576    *(.gnu.warning)
  • c/src/lib/libbsp/sh/gensh4/startup/linkcmds.rom2ram

    r646e0008 rb53261f0  
    6767    *(.text)
    6868    *(.text.*)
     69
     70    /*
     71     * Special FreeBSD sysctl sections.
     72     */
     73    . = ALIGN (16);
     74    __start_set_sysctl_set = .;
     75    *(set_sysctl_*);
     76    __stop_set_sysctl_set = ABSOLUTE(.);
     77    *(set_domain_*);
     78    *(set_pseudo_*);
     79
    6980    /* .gnu.warning sections are handled specially by elf32.em.  */
    7081    *(.gnu.warning)
Note: See TracChangeset for help on using the changeset viewer.