2005-03-07 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
This commit is contained in:
Joel Sherrill
2005-03-07 23:40:26 +00:00
parent c025abde80
commit d4d4d74c00
2 changed files with 11 additions and 7 deletions

View File

@@ -1,3 +1,7 @@
2005-03-07 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Eliminate CFLAGS_OPTIMIZE_V. * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.

View File

@@ -21,9 +21,9 @@ MEMORY
vectors : o = 0x0000, l = 0xc4 vectors : o = 0x0000, l = 0xc4
magicvectors : o = 0xc4, l = 0x3c magicvectors : o = 0xc4, l = 0x3c
/* We still only use 256k as the main ram size. */ /* We still only use 256k as the main ram size. */
ram : o = 0x0100, l = 0x3fefc ram : o = 0x0100, l = 0xffefc /* 256K RAM --> 0x3fefc */
/* The stack starts at the top of main ram. */ /* The stack starts at the top of main ram. */
topram : o = 0x3fffc, l = 0x4 topram : o = 0xffffc, l = 0x4 /* 256K RAM --> 0x3fffc */
/* This holds variables in the "tiny" sections. */ /* This holds variables in the "tiny" sections. */
tiny : o = 0xff8000, l = 0x7f00 tiny : o = 0xff8000, l = 0x7f00
/* At the very top of the address space is the 8-bit area. */ /* At the very top of the address space is the 8-bit area. */
@@ -46,11 +46,11 @@ SECTIONS
* Special FreeBSD sysctl sections. * Special FreeBSD sysctl sections.
*/ */
. = ALIGN (16); . = ALIGN (16);
__start_set_sysctl_set = .; ___start_set_sysctl_set = .;
*(set_sysctl_*); *(set_sys*); /* sysctl set */
__stop_set_sysctl_set = ABSOLUTE(.); ___stop_set_sysctl_set = ABSOLUTE(.);
*(set_domain_*); *(set_dom*); /* domain set */
*(set_pseudo_*); *(set_pse*);
/* /*
* Read-only data * Read-only data