Changeset 2aa61582 in rtems


Ignore:
Timestamp:
05/09/02 21:42:24 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
911158a
Parents:
a2a8c5b
Message:

2001-05-09 Joel Sherrill <joel@…>

  • startup/linkcmds: In support of gcc 3.1, added one of more of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*, .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*. Spacing corrections and direction of segments to memory regions may also have been addressed. This was a sweep across all BSPs.
  • startup/linkcmds.real: Ditto.
  • clock/ckinit.c: Add volatile to Clock_driver_ticks.
Location:
c/src/lib/libbsp/i960/rxgen960
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i960/rxgen960/ChangeLog

    ra2a8c5b r2aa61582  
     12001-05-09      Joel Sherrill <joel@OARcorp.com>
     2
     3        * startup/linkcmds: In support of gcc 3.1, added one of more
     4        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
     5        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
     6        and direction of segments to memory regions may also have been
     7        addressed.  This was a sweep across all BSPs.
     8        * startup/linkcmds.real: Ditto.
     9        * clock/ckinit.c: Add volatile to Clock_driver_ticks.
     10 
    1112002-04-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    212
  • c/src/lib/libbsp/i960/rxgen960/clock/ckinit.c

    ra2a8c5b r2aa61582  
    3030
    3131i960_isr_entry   Old_ticker;
    32 rtems_unsigned32 Clock_driver_ticks;
     32volatile rtems_unsigned32 Clock_driver_ticks;
    3333                                          /* ticks since initialization */
    3434unsigned int clock_isr_global[16];  /* place to store global regs */
  • c/src/lib/libbsp/i960/rxgen960/startup/linkcmds

    ra2a8c5b r2aa61582  
    2323         CREATE_OBJECT_SYMBOLS
    2424        *(.text)
     25        _rodata_start = . ;
     26        *(.rodata*)
     27        *(.gnu.linkonce.r*)
     28        _erodata = ALIGN( 0x10 ) ;
    2529         _etext = .;
    2630       
  • c/src/lib/libbsp/i960/rxgen960/startup/linkcmds.real

    ra2a8c5b r2aa61582  
    123123        LONG(0)
    124124        __DTOR_END__ = .;
    125             etext = ALIGN( 0x10 ) ;
     125        _rodata_start = . ;
     126        *(.rodata*)
     127        *(.gnu.linkonce.r*)
     128        _erodata = ALIGN( 0x10 ) ;
     129        etext = ALIGN( 0x10 ) ;
    126130/* END NEW TEST TEST TEST */
    127131        /* 16 byte aligned PRCB.
Note: See TracChangeset for help on using the changeset viewer.