source: rtems/c/src/lib/libbsp/i386/pc386/startup/linkcmds @ 6f9c75c3

4.104.114.84.95
Last change on this file since 6f9c75c3 was 6f9c75c3, checked in by Joel Sherrill <joel.sherrill@…>, on 01/16/98 at 16:56:48

Ralf Corsepius reported a number of missing CVS Id's:

RTEMS is under CVS control and has been since rtems 3.1.16 which was
around May 1995. So I just to add the $Id$. If you notice other files
with missing $Id$'s let me know. I try to keep w\up with it.

Now that you have asked -- I'll attach a list of files lacking an RCS-Id to
this mail. This list has been generated by a little sh-script I'll also
enclose.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*-------------------------------------------------------------------------+
2| linkcmds v1.1 - PC386 BSP - 1997/08/07
3+--------------------------------------------------------------------------+
4| This file contains directives for the GNU linker which are specific to the
5| PC386 bsp.
6+--------------------------------------------------------------------------+
7| (C) Copyright 1997 -
8| - NavIST Group - Real-Time Distributed Systems and Industrial Automation
9|
10| http://pandora.ist.utl.pt
11|
12| Instituto Superior Tecnico * Lisboa * PORTUGAL
13+--------------------------------------------------------------------------+
14| Disclaimer:
15|
16| This file is provided "AS IS" without warranty of any kind, either
17| expressed or implied.
18+--------------------------------------------------------------------------+
19| This code is based on:
20|   linkcmds,v 1.3 1995/12/19 20:06:58 joel Exp - FORCE CPU386 BSP
21| With the following copyright notice:
22| **************************************************************************
23| *  COPYRIGHT (c) 1989-1997.
24| *  On-Line Applications Research Corporation (OAR).
25| *  Copyright assigned to U.S. Government, 1994.
26| *
27| *  The license and distribution terms for this file may be
28| *  found in found in the file LICENSE in this distribution or at
29| *  http://www.OARcorp.com/rtems/license.html.
30| **************************************************************************
31|
32|  $Id$
33+--------------------------------------------------------------------------*/
34
35
36SECTIONS
37{
38  .text :
39  {
40    _text_start = . ;
41    *(.text)
42    _etext = ALIGN( 0x10 ) ;
43  }
44  .rodata ADDR( .text ) + SIZEOF( .text ):
45  {
46    _rodata_start = . ;
47    *(.rodata)
48    _erodata = ALIGN( 0x10 ) ;
49  }
50  .data ADDR( .rodata ) + SIZEOF( .rodata ):
51  {
52    _data_start = . ;
53    *(.data)
54    _edata = ALIGN( 0x10 ) ;
55  }
56  .bss ADDR( .data ) + SIZEOF( .data ):
57  {
58    _bss_start = . ;
59    *(.bss)
60    *(COMMON)
61    _end = . ;
62    __end = . ;
63  }
64}
Note: See TracBrowser for help on using the repository browser.