Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=86b73c8cfc8daeff554ae3e95e2a0ee77c45d499
Commit:     86b73c8cfc8daeff554ae3e95e2a0ee77c45d499
Parent:     9c8f1729b0a838dc0f44b77dab80890a98585964
Author:     Robin Getz <[EMAIL PROTECTED]>
AuthorDate: Thu Jun 21 11:34:16 2007 +0800
Committer:  Bryan Wu <[EMAIL PROTECTED]>
CommitDate: Thu Jun 21 11:34:16 2007 +0800

    Blackfin arch: match kernel startup messaage with new linker script
    
    Signed-off-by: Robin Getz <[EMAIL PROTECTED]>
    Signed-off-by: Bryan Wu <[EMAIL PROTECTED]>
---
 arch/blackfin/kernel/setup.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c
index a24fa1a..5b9b434 100644
--- a/arch/blackfin/kernel/setup.c
+++ b/arch/blackfin/kernel/setup.c
@@ -329,9 +329,10 @@ void __init setup_arch(char **cmdline_p)
 
        printk(KERN_INFO "Memory map:\n"
               KERN_INFO "  text      = 0x%p-0x%p\n"
-              KERN_INFO "  init      = 0x%p-0x%p\n"
+              KERN_INFO "  rodata    = 0x%p-0x%p\n"
               KERN_INFO "  data      = 0x%p-0x%p\n"
-              KERN_INFO "  stack     = 0x%p-0x%p\n"
+              KERN_INFO "    stack   = 0x%p-0x%p\n"
+              KERN_INFO "  init      = 0x%p-0x%p\n"
               KERN_INFO "  bss       = 0x%p-0x%p\n"
               KERN_INFO "  available = 0x%p-0x%p\n"
 #ifdef CONFIG_MTD_UCLINUX
@@ -341,9 +342,10 @@ void __init setup_arch(char **cmdline_p)
               KERN_INFO "  DMA Zone  = 0x%p-0x%p\n"
 #endif
               , _stext, _etext,
-              __init_begin, __init_end,
+              __start_rodata, __end_rodata,
               _sdata, _edata,
               (void*)&init_thread_union, (void*)((int)(&init_thread_union) + 
0x2000),
+              __init_begin, __init_end,
               __bss_start, __bss_stop,
               (void*)_ramstart, (void*)memory_end
 #ifdef CONFIG_MTD_UCLINUX
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to