diff options
-rw-r--r-- | src/arch/i386/init/crt0.S.lb | 2 | ||||
-rw-r--r-- | src/cpu/amd/car/copy_and_run.c | 2 | ||||
-rw-r--r-- | src/cpu/amd/car/post_cache_as_ram.c | 2 | ||||
-rw-r--r-- | src/cpu/x86/car/copy_and_run.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/i386/init/crt0.S.lb b/src/arch/i386/init/crt0.S.lb index 1b4ce4a0a1..952b8110cf 100644 --- a/src/arch/i386/init/crt0.S.lb +++ b/src/arch/i386/init/crt0.S.lb @@ -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 diff --git a/src/cpu/amd/car/copy_and_run.c b/src/cpu/amd/car/copy_and_run.c index 344e6d1b54..a97ad309b1 100644 --- a/src/cpu/amd/car/copy_and_run.c +++ b/src/cpu/amd/car/copy_and_run.c @@ -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 ( diff --git a/src/cpu/amd/car/post_cache_as_ram.c b/src/cpu/amd/car/post_cache_as_ram.c index d47d552f79..7074f23c5a 100644 --- a/src/cpu/amd/car/post_cache_as_ram.c +++ b/src/cpu/amd/car/post_cache_as_ram.c @@ -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 diff --git a/src/cpu/x86/car/copy_and_run.c b/src/cpu/x86/car/copy_and_run.c index 4000a09e18..6baf53ec8f 100644 --- a/src/cpu/x86/car/copy_and_run.c +++ b/src/cpu/x86/car/copy_and_run.c @@ -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 ( |