Advertisement
Lekensteyn

sx551 failure to boot on Backfire

Mar 27th, 2012
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. /* output:
  2. ===========================================================
  3. TI ADSL AR7300 Loader 0.71.4 build Oct 18 2005 11:13:40
  4. Broad Net Technology, INC.
  5. ===========================================================
  6. MXIC MX29LV160B bottom boot 16-bit mode found
  7.  
  8. Copying boot params.....DONE
  9.  
  10. Flash Checking Passed.
  11.  
  12. Unzipping web at 0x94f30000 ... [LZMA] done
  13. Unzipping code at 0x94000000 ... [LZMA] doneLinux version 2.6.32.27 (peter@penguin) (gcc version 4.3.3 (GCC) ) #7 Tue Mar 27 11:35:39 CEST 2012
  14. bootconsole [early0] enabled
  15. CPU revision is: 00018448 (MIPS 4KEc)
  16. TI AR7 (TNETD7300), ID: 0x0005, Revision: 0x26
  17. Determined physical RAM map:
  18. boot_mem_map.nr_map = 1
  19. memory: 02000000 @ 14000000 (usable)
  20. exiting print_memory_map
  21. Begin strlcpy to 00000001 for
  22.  
  23. bootmem_init
  24. Initrd not found or empty - disabling initrd
  25. sparse_init
  26. paging init
  27. Zone PFN ranges:
  28. Normal 0x00014000 -> 0x00016000
  29. Movable zone start PFN for each node
  30. early_node_map[1] active PFN ranges
  31. 0: 0x00014000 -> 0x00016000
  32. end of arch_mem_init
  33. resource init
  34. plat smp setup
  35. end of setup_arch
  36.  
  37. */
  38.  
  39.  
  40. /* from arch/mips/kernel/setup.c:558 */
  41. void __init setup_arch(char **cmdline_p)
  42. {
  43. cpu_probe();
  44. prom_init();
  45.  
  46. #ifdef CONFIG_EARLY_PRINTK
  47. setup_early_printk();
  48. #endif
  49. cpu_report();
  50. check_bugs_early();
  51.  
  52. #if defined(CONFIG_VT)
  53. #if defined(CONFIG_VGA_CONSOLE)
  54. conswitchp = &vga_con;
  55. #elif defined(CONFIG_DUMMY_CONSOLE)
  56. conswitchp = &dummy_con;
  57. #endif
  58. #endif
  59.  
  60. arch_mem_init(cmdline_p);
  61.  
  62. pr_info("resource init\n");
  63. resource_init();
  64. pr_info("plat smp setup\n");
  65. plat_smp_setup();
  66. pr_info("end of setup_arch\n");
  67. }
  68.  
  69.  
  70.  
  71.  
  72. /* caller, init/main.c:512 */
  73. asmlinkage void __init start_kernel(void)
  74. {
  75. char * command_line;
  76. extern struct kernel_param __start___param[], __stop___param[];
  77.  
  78. smp_setup_processor_id();
  79.  
  80. /*
  81. * Need to run as early as possible, to initialize the
  82. * lockdep hash:
  83. */
  84. lockdep_init();
  85. debug_objects_early_init();
  86.  
  87. /*
  88. * Set up the the initial canary ASAP:
  89. */
  90. boot_init_stack_canary();
  91.  
  92. cgroup_init_early();
  93.  
  94. local_irq_disable();
  95. early_boot_irqs_off();
  96. early_init_irq_lock_class();
  97.  
  98. /*
  99. * Interrupts are still disabled. Do necessary setups, then
  100. * enable them
  101. */
  102. lock_kernel();
  103. tick_init();
  104. boot_cpu_init();
  105. page_address_init();
  106. printk(KERN_NOTICE "%s", linux_banner);
  107. setup_arch(&command_line);
  108. pr_info("mm_init_owner");
  109. pr_info("(%p, %p)\n", &init_mm, &init_task);
  110. mm_init_owner(&init_mm, &init_task);
  111. pr_info("setup_command_line\n");
  112. setup_command_line(command_line);
  113. pr_info("setup_nr_cpu_ids\n");
  114. setup_nr_cpu_ids();
  115. pr_info("setup_per_cpu_areas\n");
  116. setup_per_cpu_areas();
  117. pr_info("smp_prepare_boot_cpu\n");
  118. smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
  119.  
  120. pr_info("build_all_zonelists\n");
  121. build_all_zonelists();
  122. pr_info("page_alloc_init\n");
  123. page_alloc_init();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement