mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
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:
@@ -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>
|
||||
|
||||
* Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
|
||||
|
||||
@@ -21,9 +21,9 @@ MEMORY
|
||||
vectors : o = 0x0000, l = 0xc4
|
||||
magicvectors : o = 0xc4, l = 0x3c
|
||||
/* 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. */
|
||||
topram : o = 0x3fffc, l = 0x4
|
||||
topram : o = 0xffffc, l = 0x4 /* 256K RAM --> 0x3fffc */
|
||||
/* This holds variables in the "tiny" sections. */
|
||||
tiny : o = 0xff8000, l = 0x7f00
|
||||
/* At the very top of the address space is the 8-bit area. */
|
||||
@@ -46,11 +46,11 @@ SECTIONS
|
||||
* Special FreeBSD sysctl sections.
|
||||
*/
|
||||
. = ALIGN (16);
|
||||
__start_set_sysctl_set = .;
|
||||
*(set_sysctl_*);
|
||||
__stop_set_sysctl_set = ABSOLUTE(.);
|
||||
*(set_domain_*);
|
||||
*(set_pseudo_*);
|
||||
___start_set_sysctl_set = .;
|
||||
*(set_sys*); /* sysctl set */
|
||||
___stop_set_sysctl_set = ABSOLUTE(.);
|
||||
*(set_dom*); /* domain set */
|
||||
*(set_pse*);
|
||||
|
||||
/*
|
||||
* Read-only data
|
||||
|
||||
Reference in New Issue
Block a user