Advertisement
Guest User

Untitled

a guest
Aug 11th, 2012
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. Marvell>> printenv
  2. ethact=egiga0
  3. bootdelay=3
  4. baudrate=115200
  5. mainlineLinux=yes
  6. console=ttyS0,115200
  7. led_init=green blinking
  8. led_exit=green off
  9. led_error=orange blinking
  10. mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
  11. mtdids=nand0=orion_nand
  12. partition=nand0,2
  13. rescue_installed=0
  14. rescue_set_bootargs=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts $rescue_custom_params
  15. rescue_bootcmd=if test $rescue_installed -eq 1; then run rescue_set_bootargs; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000; else run pogo_bootcmd; fi
  16. pogo_bootcmd=if fsload uboot-original-mtd0.kwb; then go 0x800200; fi
  17. force_rescue=0
  18. force_rescue_bootcmd=if test $force_rescue -eq 1 || ext2load usb 0:1 0x1700000 /rescueme 1 || fatload usb 0:1 0x1700000 /rescueme.txt 1; then run rescue_bootcmd; fi
  19. ubifs_mtd=3
  20. ubifs_set_bootargs=setenv bootargs console=$console ubi.mtd=$ubifs_mtd root=ubi0:rootfs rootfstype=ubifs $mtdparts $ubifs_custom_params
  21. ubifs_bootcmd=run ubifs_set_bootargs; if ubi part data && ubifsmount rootfs && ubifsload 0x800000 /boot/uImage && ubifsload 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; fi
  22. usb_scan=usb_scan_done=0;for scan in $usb_scan_list; do run usb_scan_$scan; if test $usb_scan_done -eq 0 && ext2load usb $usb 0x800000 /boot/uImage 1; then usb_scan_done=1; echo "Found bootable drive on usb $usb"; setenv usb_device $usb; setenv usb_root /dev/$dev; fi; done
  23. usb_scan_list=1 2 3 4
  24. usb_scan_1=usb=0:1 dev=sda1
  25. usb_scan_2=usb=1:1 dev=sdb1
  26. usb_scan_3=usb=2:1 dev=sdc1
  27. usb_scan_4=usb=3:1 dev=sdd1
  28. usb_init=run usb_scan
  29. usb_device=0:1
  30. usb_root=/dev/sda1
  31. usb_rootfstype=ext2
  32. usb_rootdelay=10
  33. usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params
  34. usb_bootcmd=run usb_init; run usb_set_bootargs; run usb_boot
  35. usb_boot=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage; if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
  36. ethaddr=00:10:75:1A:4E:40
  37. arcNumber=2097
  38. ipaddr=172.19.10.199
  39. if_netconsole=ping $serverip
  40. start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
  41. preboot=run if_netconsole start_netconsole
  42. serverip=172.19.10.200
  43. stdin=serial
  44. stdout=serial
  45. stderr=serial
  46. bootargs=console=ttyS0,115200 root=/dev/sdb2 rootwait
  47. loadInitrd=fatload usb 1:1 0x7400000 uInitrd-kirkwood
  48. loadImage=fatload usb 1:1 0x6400000 uImage-kirkwood
  49. bootcmd=usb start; ${loadImage}; ${loadInitrd} ; bootm 0x6400000 0x7400000
  50.  
  51. Environment size: 2600/131068 bytes
  52. Marvell>> boot
  53. (Re)start USB...
  54. USB: Register 10011 NbrPorts 1
  55. USB EHCI 1.00
  56. scanning bus for devices... 4 USB Device(s) found
  57. scanning bus for storage devices... 2 Storage Device(s) found
  58. reading uImage-kirkwood
  59.  
  60. ** Unable to read "uImage-kirkwood" from usb 1:1 **
  61. reading uInitrd-kirkwood
  62.  
  63. ** Unable to read "uInitrd-kirkwood" from usb 1:1 **
  64. Wrong Image Format for bootm command
  65. ERROR: can't get kernel image!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement