mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-22 13:31:41 +08:00
2008-10-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, startup/bspgetworkarea.c: Turn = into +=.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2008-10-02 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* Makefile.am, startup/bspgetworkarea.c: Turn = into +=.
|
||||
|
||||
2008-10-01 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect
|
||||
|
||||
@@ -53,7 +53,7 @@ project_lib_DATA += start16.bin
|
||||
|
||||
dist_project_lib_DATA += startup/linkcmds
|
||||
|
||||
noinst_LIBRARIES = libbsp.a
|
||||
noinst_LIBRARIES += libbsp.a
|
||||
libbsp_a_SOURCES =
|
||||
|
||||
# clock
|
||||
|
||||
@@ -74,11 +74,9 @@ void bsp_size_memory(void)
|
||||
(_boot_multiboot_info.flags & 1) &&
|
||||
_boot_multiboot_info.mem_upper ) {
|
||||
bsp_mem_size = _boot_multiboot_info.mem_upper * 1024;
|
||||
printk( "multiboot\n" );
|
||||
}
|
||||
|
||||
if ( (uintptr_t) RamSize == (uintptr_t) 0xFFFFFFFF ) {
|
||||
printk( "sizing\n" );
|
||||
/*
|
||||
* We have to dynamically size memory. Memory size can be anything
|
||||
* between no less than 2M and 2048M.
|
||||
@@ -99,7 +97,6 @@ void bsp_size_memory(void)
|
||||
|
||||
topAddr = (i-1)*1024*1024 - 4;
|
||||
} else {
|
||||
printk( "hardcoded\n" );
|
||||
topAddr = (uintptr_t) RamSize;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user