Advertisement
Guest User

Untitled

a guest
Aug 27th, 2015
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.92 KB | None | 0 0
  1. MX6Q SABRELITE U-Boot > echo $clearenv
  2. sf probe 1 && sf erase 0xc0000 0x2000 && echo restored environment to factory default
  3.  
  4. MX6Q SABRELITE U-Boot > reboot
  5. Unknown command 'reboot' - try 'help'
  6. MX6Q SABRELITE U-Boot > reset
  7. resetting ...
  8.  
  9.  
  10. U-Boot 2009.08 (Jul 05 2012 - 15:37:27)
  11.  
  12. CPU:   Freescale i.MX 6 family 0.0V at 792 MHz
  13. Temperature:   can't get valid data!
  14. mx6q pll1: 792MHz
  15. mx6q pll2: 528MHz
  16. mx6q pll3: 480MHz
  17. mx6q pll8: 50MHz
  18. ipg clock     : 66000000Hz
  19. ipg per clock : 66000000Hz
  20. uart clock    : 80000000Hz
  21. cspi clock    : 60000000Hz
  22. ahb clock     : 132000000Hz
  23. axi clock   : 264000000Hz
  24. emi_slow clock: 29333333Hz
  25. ddr clock     : 528000000Hz
  26. usdhc1 clock  : 200000000Hz
  27. usdhc2 clock  : 200000000Hz
  28. usdhc3 clock  : 200000000Hz
  29. usdhc4 clock  : 200000000Hz
  30. nfc clock     : 24000000Hz
  31. Board: MX6Q-SABRELITE:[ WDOG]
  32. Boot Device: I2C
  33. I2C:   ready
  34. DRAM:   1 GB
  35. MMC:   FSL_USDHC: 0,FSL_USDHC: 1
  36. JEDEC ID: 0xbf:0x25:0x41
  37. Reading SPI NOR flash 0xc0000 [0x2000 bytes] -> ram 0x276009b8
  38. SUCCESS
  39.  
  40. *** Warning - bad CRC, using default environment
  41.  
  42. In:    serial
  43. Out:   serial
  44. Err:   serial
  45. Net:   got MAC address from IIM: 00:19:b8:00:f7:45
  46. FEC0 [PRIME]
  47. Warning: FEC0 MAC addresses don't match:
  48. Address in SROM is         00:19:b8:00:f7:45
  49. Address in environment is  00:01:02:03:04:05
  50.  
  51. Hit any key to stop autoboot:  0
  52. mmc0 is current device
  53. reading /6q_bootscript
  54.  
  55. ** Unable to read "/6q_bootscript" from mmc 0:1 **
  56. Loading file "/6q_bootscript" from mmc device 0:1 (xxa1)
  57. Failed to mount ext2 filesystem...
  58. ** Bad ext2 partition or disk - mmc 0:1 **
  59. Card did not respond to voltage select!
  60. mmc1(part 0) is current device
  61. MMC: block number 0x1 exceeds max(0x0)
  62. ** Can't read from device 1 **
  63.  
  64. ** Unable to use mmc 1:1 for fatload **
  65. ** Bad partition 1 **
  66.  
  67. MX6Q SABRELITE U-Boot > setenv bootcmd_mmc 'for disk in 0 1 ; do mmc dev ${disk} ;for fs in fat ext2 ; do ${fs}load mmc ${disk}:1 10008000 /6x_bootscript && source 10008000 ; done ; done'
  68. MX6Q SABRELITE U-Boot > saveenv
  69. Saving Environment to SPI Flash...
  70. Erasing SPI flash...Erasing SPI NOR flash 0xc0000 [0x2000 bytes]
  71. ..SUCCESS
  72.  
  73. Writing to SPI flash...Writing SPI NOR flash 0xc0000 [0x2000 bytes] <- ram 0x276009b8
  74. SUCCESS
  75.  
  76. done
  77. MX6Q SABRELITE U-Boot > boot
  78. mmc0 is current device
  79. reading /6x_bootscript
  80.  
  81. 5452 bytes read
  82. ## Executing script at 10008000
  83. Unknown command 'setexpr' - try 'help'
  84. ----------- run fastboot here
  85. usage: fatload <interface> <dev[:part]> <addr> <filename> [bytes]
  86. usage: fatload <interface> <dev[:part]> <addr> <filename> [bytes]
  87. !!!! Error loading imx6dl-sabrelite.dtb
  88. Loading file "/6x_bootscript" from mmc device 0:1 (xxa1)
  89. Failed to mount ext2 filesystem...
  90. ** Bad ext2 partition or disk - mmc 0:1 **
  91. Card did not respond to voltage select!
  92. mmc1(part 0) is current device
  93. MMC: block number 0x1 exceeds max(0x0)
  94. ** Can't read from device 1 **
  95.  
  96. ** Unable to use mmc 1:1 for fatload **
  97. ** Bad partition 1 **
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement