Advertisement
Learning

Untitled

Sep 22nd, 2011
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. Texas Instruments X-Loader 1.4.4ss (Feb 20 2011 - 20:16:03)
  2. Beagle Rev C1/C2/C3
  3. Reading boot sector
  4. Loading u-boot.bin from mmc
  5.  
  6.  
  7. U-Boot 2010.03 (Feb 20 2011 - 20:15:58)
  8.  
  9. OMAP3530-GP ES3.0, CPU-OPP2, L3-165MHz, Max clock-600Mhz
  10. OMAP3 Beagle board + LPDDR/NAND
  11. I2C: ready
  12. DRAM: 256 MB
  13. NAND: 256 MiB
  14. In: serial
  15. Out: serial
  16. Err: serial
  17.  
  18. Probing for expansion boards, if none are connected you'll see a harmless I2C error.
  19.  
  20. timed out in wait_for_pin: I2C_STAT=0
  21. I2C read: I/O error
  22. Unrecognized expansion board: 0
  23. Beagle Rev C1/C2/C3
  24. Die ID #42640003000000000403230911008019
  25. Hit any key to stop autoboot: 0
  26. Unknown command 'mmcinit' - try 'help'
  27. Booting from nand ...
  28.  
  29. NAND read: device 0 offset 0x280000, size 0x400000
  30. 4194304 bytes read: OK
  31. Wrong Image Format for bootm command
  32. ERROR: can't get kernel image!
  33. OMAP3 beagleboard.org # mmc init
  34. mmc1 is available
  35. OMAP3 beagleboard.org #
  36.  
  37.  
  38. and my uEnv.txt:
  39. mmc init
  40. if fatload mmc 1 0x80300000 uImage
  41. then
  42. echo ***** Kernel: /dev/mmcblk0p1/uImage *****
  43. else
  44. echo ***** Kernel: /dev/mtd3 *****
  45. nand read 0x80300000 280000 400000
  46. fi
  47. if fatload mmc 1 81600000 ramdisk.gz
  48. then
  49. echo ***** RootFS: /dev/mmcblk0p1/ramdisk.gz *****
  50. setenv bootargs 'console=ttyS2,115200n8 console=tty0 root=/dev/ram0
  51. rw ramdisk_size=32768 initrd=0x81600000,32M'
  52. else
  53. echo ***** RootFS: /dev/mmcblk0p2 *****
  54.  
  55. setenv bootargs 'console=ttyS2,115200n8
  56. root=/dev/mmcblk0p2 noinitrd rw rootwait rootfstype=ext3'
  57. fi
  58. bootm 0x80300000
  59. CTRL-A Z for help |115200 8N1 | NOR | Minicom 2.3 | VT102 | Offline
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement