Advertisement
Guest User

Untitled

a guest
Mar 28th, 2014
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. sun4i# printenv
  2. autoboot=run loadkernel && run setargs && true && bootm 0x48000000
  3. baudrate=115200
  4. boot_ram=saved_stdout=$stdout;setenv stdout nc;if iminfo 0x41000000; then true; setenv stdout $saved_stdout; source 0x41000000;else setenv stdout $saved_stdout;fi
  5. bootcmd=if run loadbootenv; then echo Loaded environment from ${bootenv};env import -t ${scriptaddr} ${filesize};fi;if test -n "${uenvcmd}"; then echo Running uenvcmd ...;run uenvcmd;fi;if run loadbootscr; then echo Jumping to ${bootscr};source ${scriptaddr};fi;run autoboot;
  6. bootdelay=3
  7. bootenv=uEnv.txt
  8. bootm_size=0x20000000
  9. bootscr=boot.scr
  10. console=ttyS0,115200
  11. device=mmc
  12. ethact=emac
  13. kernel=uImage
  14. loadbootenv=fatload $device $partition $scriptaddr ${bootenv} || ext2load $device $partition $scriptaddr boot/${bootenv} || ext2load $device $partition $scriptaddr ${bootenv}
  15. loadbootscr=fatload $device $partition $scriptaddr ${bootscr} || ext2load $device $partition $scriptaddr boot/${bootscr} ||ext2load $device $partition $scriptaddr ${bootscr}
  16. loadkernel=if bootpath=/boot/ && ext2load $device $partition 0x43000000 ${bootpath}${script} && ext2load $device $partition 0x48000000 ${bootpath}${kernel};then true; elif bootpath=/ && fatload $device $partition 0x43000000 ${script} && fatload $device $partition 0x48000000 ${kernel};then true; elif bootpath=/ && ext2load $device $partition 0x43000000 ${bootpath}${script} && ext2load $device $partition 0x48000000 ${bootpath}${kernel};then true; else false;fi
  17. loglevel=8
  18. panicarg=panic=10
  19. partition=0:1
  20. script=script.bin
  21. scriptaddr=0x44000000
  22. setargs=if test -z \\"$root\\"; then if test \\"$bootpath\\" = "/boot/"; then root="/dev/mmcblk0p1 rootwait"; else root="/dev/mmcblk0p2 rootwait"; fi; fi; setenv bootargs console=${console} root=${root} loglevel=${loglevel} ${panicarg} ${extraargs}
  23. stderr=serial
  24. stdin=serial
  25. stdout=serial
  26.  
  27.  
  28.  
  29. U-Boot SPL 2014.04-rc2-10390-g96510e1-dirty (Mar 28 2014 - 20:48:00)
  30. Board: Marsboard_A10
  31. DRAM: 512 MiB
  32. CPU: 1008000000Hz, AXI/AHB/APB: 3/2/2
  33. SPL: Please implement spl_start_uboot() for your board
  34. SPL: Direct Linux boot not active!
  35.  
  36.  
  37. U-Boot 2014.04-rc2-10390-g96510e1-dirty (Mar 28 2014 - 20:48:00) Allwinner Techn ology
  38.  
  39. CPU: Allwinner A10 (SUN4I)
  40. Board: Marsboard_A10
  41. I2C: ready
  42. DRAM: 512 MiB
  43. MMC: SUNXI SD/MMC: 0
  44. *** Warning - bad CRC, using default environment
  45.  
  46. In: serial
  47. Out: serial
  48. Err: serial
  49. Net: emac
  50. Hit any key to stop autoboot: 0
  51. reading uEnv.txt
  52. ** Unable to read file uEnv.txt **
  53. Failed to mount ext2 filesystem...
  54. ** Unrecognized filesystem type **
  55. Failed to mount ext2 filesystem...
  56. ** Unrecognized filesystem type **
  57. reading boot.scr
  58. ** Unable to read file boot.scr **
  59. Failed to mount ext2 filesystem...
  60. ** Unrecognized filesystem type **
  61. Failed to mount ext2 filesystem...
  62. ** Unrecognized filesystem type **
  63. Failed to mount ext2 filesystem...
  64. ** Unrecognized filesystem type **
  65. reading script.bin
  66. 40072 bytes read in 5 ms (7.6 MiB/s)
  67. reading uImage
  68. 5080752 bytes read in 265 ms (18.3 MiB/s)
  69. ## Booting kernel from Legacy Image at 48000000 ...
  70. Image Name: Linux-3.4.61+
  71. Created: 2014-03-28 19:47:37 UTC
  72. Image Type: ARM Linux Kernel Image (uncompressed)
  73. Data Size: 5080688 Bytes = 4.8 MiB
  74. Load Address: 40008000
  75. Entry Point: 40008000
  76. Verifying Checksum ... OK
  77. Loading Kernel Image ... OK
  78.  
  79. Starting kernel ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement