Change 'ram' to 'RAM' in user-visible output (closes #60).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2535 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
9095e30f2d
commit
96206510e3
|
@ -215,7 +215,7 @@ crt_console_tx_string:
|
|||
|
||||
#if defined(CONSOLE_DEBUG_TX_STRING) && (ASM_CONSOLE_LOGLEVEL > BIOS_DEBUG)
|
||||
.section ".rom.data"
|
||||
str_copying_to_ram: .string "Copying LinuxBIOS to ram.\r\n"
|
||||
str_copying_to_ram: .string "Copying LinuxBIOS to RAM.\r\n"
|
||||
str_pre_main: .string "Jumping to LinuxBIOS.\r\n"
|
||||
.previous
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ static void copy_and_run(void)
|
|||
uint8_t *src, *dst;
|
||||
unsigned long ilen, olen;
|
||||
|
||||
print_debug("Copying LinuxBIOS to ram.\r\n");
|
||||
print_debug("Copying LinuxBIOS to RAM.\r\n");
|
||||
|
||||
#if !CONFIG_COMPRESS
|
||||
__asm__ volatile (
|
||||
|
|
|
@ -53,7 +53,7 @@ static void post_cache_as_ram(void)
|
|||
set_init_ram_access(); /* So we can access RAM from [1M, CONFIG_LB_MEM_TOPK) */
|
||||
|
||||
// dump_mem(DCACHE_RAM_BASE+DCACHE_RAM_SIZE-0x8000, DCACHE_RAM_BASE+DCACHE_RAM_SIZE-0x7c00);
|
||||
print_debug("Copying data from cache to ram -- switching to use ram as stack... ");
|
||||
print_debug("Copying data from cache to RAM -- switching to use RAM as stack... ");
|
||||
|
||||
/* from here don't store more data in CAR */
|
||||
#if 0
|
||||
|
|
|
@ -15,7 +15,7 @@ static void copy_and_run(unsigned cpu_reset)
|
|||
unsigned long dst_len;
|
||||
unsigned long ilen, olen;
|
||||
|
||||
print_debug("Copying LinuxBIOS to ram.\r\n");
|
||||
print_debug("Copying LinuxBIOS to RAM.\r\n");
|
||||
|
||||
#if !CONFIG_COMPRESS
|
||||
__asm__ volatile (
|
||||
|
|
Loading…
Reference in New Issue