Changeset d4d4d74c in rtems


Ignore:
Timestamp:
03/07/05 23:40:26 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
41b34c85
Parents:
c025abd
Message:

2005-03-07 Joel Sherrill <joel@…>

  • startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
Location:
c/src/lib/libbsp/h8300/h8sim
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/h8300/h8sim/ChangeLog

    rc025abd rd4d4d74c  
     12005-03-07      Joel Sherrill <joel@OARcorp.com>
     2
     3        * startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
     4
    152005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
    26
  • c/src/lib/libbsp/h8300/h8sim/startup/linkcmds

    rc025abd rd4d4d74c  
    2222  magicvectors : o = 0xc4, l = 0x3c
    2323  /* We still only use 256k as the main ram size.  */
    24   ram    : o = 0x0100, l = 0x3fefc
     24  ram    : o = 0x0100, l = 0xffefc /* 256K RAM --> 0x3fefc */
    2525  /* The stack starts at the top of main ram.  */
    26   topram : o = 0x3fffc, l = 0x4
     26  topram : o = 0xffffc, l = 0x4  /* 256K RAM --> 0x3fffc */
    2727  /* This holds variables in the "tiny" sections.  */
    2828  tiny   : o = 0xff8000, l = 0x7f00
     
    4747         */
    4848        . = ALIGN (16);
    49         __start_set_sysctl_set = .;
    50         *(set_sysctl_*);
    51         __stop_set_sysctl_set = ABSOLUTE(.);
    52         *(set_domain_*);
    53         *(set_pseudo_*);
     49        ___start_set_sysctl_set = .;
     50        *(set_sys*);                            /* sysctl set */
     51        ___stop_set_sysctl_set = ABSOLUTE(.);
     52        *(set_dom*);                            /* domain set */
     53        *(set_pse*);
    5454
    5555        /*
Note: See TracChangeset for help on using the changeset viewer.