Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1. => run scan_dev_for_boot
  2. Scanning :...
  3. Found /extlinux/extlinux.conf
  4. Invalid filesystem: 0x4FC00000
  5. SCRIPT FAILED: continuing...
  6. Found U-Boot script /boot.scr.uimg
  7. ** Bad device : 0x4FC00000 **
  8. ## Executing script at 4fc00000
  9. Wrong image format for "source" command
  10. SCRIPT FAILED: continuing...
  11. Found U-Boot script /boot.scr
  12. ** Bad device : 0x4FC00000 **
  13. ## Executing script at 4fc00000
  14. Wrong image format for "source" command
  15. SCRIPT FAILED: continuing...
  16. Found /boot/extlinux/extlinux.conf
  17. Invalid filesystem: 0x4FC00000
  18. SCRIPT FAILED: continuing...
  19. Found U-Boot script /boot/boot.scr.uimg
  20. ** Bad device : 0x4FC00000 **
  21. ## Executing script at 4fc00000
  22. Wrong image format for "source" command
  23. SCRIPT FAILED: continuing...
  24. Found U-Boot script /boot/boot.scr
  25. ** Bad device : 0x4FC00000 **
  26. ## Executing script at 4fc00000
  27. Wrong image format for "source" command
  28. SCRIPT FAILED: continuing...
  29. ** Bad device : 0x4FA00000 **
  30. ** Bad device : 0x4FA00000 **
  31. ** Bad device : 0x4FA00000 **
  32. Found EFI removable media binary efi/boot/bootaa64.efi
  33. ** Bad device : 0x40080000 **
  34. libfdt fdt_check_header(): FDT_ERR_BADMAGIC
  35. ## Starting EFI application at 40080000 ...
  36. efi_load_pe: Invalid DOS Signature
  37. ## Application terminated, r = -2
  38. EFI LOAD FAILED: continuing...
  39. =>
  40. =>
  41. =>
  42. =>
  43. => printenv
  44. arch=arm
  45. baudrate=115200
  46. board=sunxi
  47. board_name=sunxi
  48. boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${script}; source ${scriptaddr}
  49. boot_efi_binary=load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} efi/boot/bootaa64.efi; if fdt addr ${fdt_addr_r}; then bootefi ${kernel_addr_r} ${fdt_addr_r};else bootefi ${kernel_addr_r} ${fdtcontroladdr};fi
  50. boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}extlinux/extlinux.conf
  51. boot_net_usb_start=usb start
  52. boot_prefixes=/ /boot/
  53. boot_script_dhcp=boot.scr.uimg
  54. boot_scripts=boot.scr.uimg boot.scr
  55. boot_targets=fel mmc0 usb0 pxe dhcp
  56. bootcmd=run distro_bootcmd
  57. bootcmd_dhcp=run boot_net_usb_start; if dhcp ${scriptaddr} ${boot_script_dhcp}; then source ${scriptaddr}; fi;setenv efi_fdtfile ${fdtfile}; setenv efi_old_vci ${bootp_vci};setenv efi_old_arch ${bootp_arch};setenv bootp_vci PXEClient:Arch:00011:UNDI:003000;setenv bootp_arch 0xb;if dhcp ${kernel_addr_r}; then tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};if fdt addr ${fdt_addr_r}; then bootefi ${kernel_addr_r} ${fdt_addr_r}; else bootefi ${kernel_addr_r} ${fdtcontroladdr};fi;fi;setenv bootp_vci ${efi_old_vci};setenv bootp_arch ${efi_old_arch};setenv efi_fdtfile;setenv efi_old_arch;setenv efi_old_vci;
  58. bootcmd_fel=if test -n ${fel_booted} && test -n ${fel_scriptaddr}; then echo '(FEL boot)'; source ${fel_scriptaddr}; fi
  59. bootcmd_mmc0=setenv devnum 0; run mmc_boot
  60. bootcmd_pxe=run boot_net_usb_start; dhcp; if pxe get; then pxe boot; fi
  61. bootcmd_usb0=setenv devnum 0; run usb_boot
  62. bootdelay=2
  63. bootm_size=0xa000000
  64. console=ttyS0,115200
  65. cpu=armv8
  66. dfu_alt_info_ram=kernel ram 0x40080000 0x1000000;fdt ram 0x4FA00000 0x100000;ramdisk ram 0x4FE00000 0x4000000
  67. distro_bootcmd=for target in ${boot_targets}; do run bootcmd_${target}; done
  68. efi_dtb_prefixes=/ /dtb/ /dtb/current/
  69. ethaddr=02:ba:fc:cd:87:3e
  70. fdt_addr_r=0x4FA00000
  71. fdtcontroladdr=bbf33d38
  72. fdtfile=sun50i-a64-pine64-plus.dtb
  73. kernel_addr_r=0x40080000
  74. load_efi_dtb=load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} ${prefix}${efi_fdtfile}
  75. mmc_boot=if mmc dev ${devnum}; then setenv devtype mmc; run scan_dev_for_boot_part; fi
  76. preboot=usb start
  77. pxefile_addr_r=0x4FD00000
  78. ramdisk_addr_r=0x4FE00000
  79. scan_dev_for_boot=echo Scanning ${devtype} ${devnum}:${distro_bootpart}...; for prefix in ${boot_prefixes}; do run scan_dev_for_extlinux; run scan_dev_for_scripts; done;run scan_dev_for_efi;
  80. scan_dev_for_boot_part=part list ${devtype} ${devnum} -bootable devplist; env exists devplist || setenv devplist 1; for distro_bootpart in ${devplist}; do if fstype ${devtype} ${devnum}:${distro_bootpart} bootfstype; then run scan_dev_for_boot; fi; done
  81. scan_dev_for_efi=setenv efi_fdtfile ${fdtfile}; for prefix in ${efi_dtb_prefixes}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${efi_fdtfile}; then run load_efi_dtb; fi;done;if test -e ${devtype} ${devnum}:${distro_bootpart} efi/boot/bootaa64.efi; then echo Found EFI removable media binary efi/boot/bootaa64.efi; run boot_efi_binary; echo EFI LOAD FAILED: continuing...; fi; setenv efi_fdtfile
  82. scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}extlinux/extlinux.conf; then echo Found ${prefix}extlinux/extlinux.conf; run boot_extlinux; echo SCRIPT FAILED: continuing...; fi
  83. scan_dev_for_scripts=for script in ${boot_scripts}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${script}; then echo Found U-Boot script ${prefix}${script}; run boot_a_script; echo SCRIPT FAILED: continuing...; fi; done
  84. scriptaddr=0x4FC00000
  85. serial#=92c000bafccd873e
  86. soc=sunxi
  87. stderr=serial
  88. stdin=serial,usbkbd
  89. stdout=serial
  90. usb_boot=usb start; if usb dev ${devnum}; then setenv devtype usb; run scan_dev_for_boot_part; fi
  91.  
  92. Environment size: 3850/131068 bytes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement