Advertisement
Guest User

Untitled

a guest
Oct 14th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.78 KB | None | 0 0
  1. echo Setting bootargs
  2. setenv bootargs console=tty0 console=ttyS0,115200 root=/dev/mmcblk0p2 no_console_suspend rootwait quiet
  3. earlycon=uart,mmio32,0x01c28000 panic=10 consoleblank=0 loglevel=0
  4. printenv
  5. echo Loading DTB
  6. load mmc 0:1 ${fdt_addr_r} /sun50i-a64-pinetab.dtb
  7. echo Loading kernel Image
  8. load mmc 0:1 ${kernel_addr_r} /Image
  9. echo Booting kernel NOW
  10. booti ${kernel_addr_r} - ${fdt_addr_r}
  11.  
  12.  
  13. ****************************OUTPUT***********************************
  14.  
  15. U-Boot SPL 2020.07-01100-g072c0577d8 (Oct 01 2020 - 04:08:42 +0000)
  16. DRAM: 2048 MiB
  17. Trying to boot from MMC1
  18. NOTICE: BL31: v2.3(release):v2.3-257-gedd8188d3
  19. NOTICE: BL31: Built : 04:08:36, Oct 1 2020
  20. NOTICE: BL31: Detected Allwinner A64/H64/R18 SoC (1689)
  21. NOTICE: BL31: Found U-Boot DTB at 0x4065bc8, model: Pine64 PinePhone Braveheart (1.1)
  22. NOTICE: PSCI: System suspend is unavailable
  23.  
  24.  
  25. U-Boot 2020.07-01100-g072c0577d8 (Oct 01 2020 - 04:08:42 +0000) Allwinner Technology
  26.  
  27. CPU: Allwinner A64 (SUN50I)
  28. Model: Pine64 PinePhone Braveheart (1.1)
  29. DRAM: 2 GiB
  30. MMC: mmc@1c0f000: 0, mmc@1c10000: 2, mmc@1c11000: 1
  31. Loading Environment from FAT... Unable to use mmc 1:1... In: serial@1c28000
  32. Out: serial@1c28000
  33. Err: serial@1c28000
  34. starting USB...
  35. No working controllers found
  36. Hit any key to stop autoboot: 0
  37. switch to partitions #0, OK
  38. mmc0 is current device
  39. Scanning mmc 0:1...
  40. Found U-Boot script /boot.scr
  41. 468 bytes read in 2 ms (228.5 KiB/s)
  42. ## Executing script at 4fc00000
  43. Setting bootargs
  44. arch=arm
  45. baudrate=115200
  46. board=sunxi
  47. board_name=sunxi
  48. boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${sc
  49. ript}; source ${scriptaddr}
  50. boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}${boot_syslinux_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_syslinux_conf=extlinux/extlinux.conf
  56. boot_targets=fel mmc_auto usb0
  57. bootargs=console=tty0 console=ttyS0,115200 root=/dev/mmcblk0p2 no_console_suspend rootwait quiet
  58. bootcmd=run distro_bootcmd
  59. bootcmd_fel=if test -n ${fel_booted} && test -n ${fel_scriptaddr}; then echo '(FEL boot)'; source ${fel_scriptaddr}; fi
  60. bootcmd_mmc0=devnum=0; run mmc_boot
  61. bootcmd_mmc1=devnum=1; run mmc_boot
  62. bootcmd_mmc_auto=if test ${mmc_bootdev} -eq 1; then run bootcmd_mmc1; run bootcmd_mmc0; elif test ${mmc_bootdev} -eq 0; then run bootcmd_mmc0; run bootcmd_mmc1; fi
  63. bootcmd_usb0=devnum=0; run usb_boot
  64. bootdelay=0
  65. bootfstype=ext4
  66. bootm_size=0xa000000
  67. console=ttyS0,115200
  68. cpu=armv8
  69. devplist=1
  70. dfu_alt_info_ram=kernel ram 0x40080000 0x1000000;fdt ram 0x4FA00000 0x100000;ramdisk ram 0x4FE00000 0x4000000
  71. distro_bootcmd=for target in ${boot_targets}; do run bootcmd_${target}; done
  72. ethaddr=02:ba:cc:b6:74:4c
  73. fdt_addr_r=0x4FA00000
  74. fdtcontroladdr=bbf59ce0
  75. fdtfile=allwinner/sun50i-a64-pinephone-1.1.dtb
  76. fileaddr=4fc00000
  77. filesize=1d4
  78. kernel_addr_r=0x40080000
  79. mmc_boot=if mmc dev ${devnum}; then devtype=mmc; run scan_dev_for_boot_part; fi
  80. mmc_bootdev=0
  81. partitions=name=loader1,start=8k,size=32k,uuid=${uuid_gpt_loader1};name=loader2,size=984k,uuid=${uuid_gpt_loader2};name=esp,size=128M,bootable,uuid=${uuid_gpt_esp};name=system,size=-,uuid=${uuid_gpt_system};
  82. preboot=usb start
  83. pxefile_addr_r=0x4FD00000
  84. ramdisk_addr_r=0x4FE00000
  85. 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;
  86. 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; setenv devplist
  87. scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${boot_syslinux_conf}; then echo Found ${prefix}${boot_syslinux_conf}; run boot_extlinux; echo SCRIPT FAILED: continuing...; fi
  88. 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
  89. scriptaddr=0x4FC00000
  90. serial#=92c0d2baccb6744c
  91. soc=sunxi
  92. stderr=serial@1c28000
  93. stdin=serial@1c28000
  94. stdout=serial@1c28000
  95. usb_boot=usb start; if usb dev ${devnum}; then devtype=usb; run scan_dev_for_boot_part; fi
  96. uuid_gpt_esp=c12a7328-f81f-11d2-ba4b-00a0c93ec93b
  97. uuid_gpt_system=b921b045-1df0-41c3-af44-4c6f280d3fae
  98.  
  99. Environment size: 3020/131068 bytes
  100. Loading DTB
  101. 32062 bytes read in 4 ms (7.6 MiB/s)
  102. Loading kernel Image
  103. 18121216 bytes read in 790 ms (21.9 MiB/s)
  104. Booting kernel NOW
  105. ## Flattened Device Tree blob at 4fa00000
  106. Booting using the fdt blob at 0x4fa00000
  107. Loading Device Tree to 0000000049ff5000, end 0000000049fffd3d ... OK
  108.  
  109. Starting kernel ...
  110.  
  111. [ 0.119933] sun50i-de2-bus 1000000.bus: Error couldn't map SRAM to device
  112. [ 0.120642] sun4i-usb-phy 1c19400.phy: Couldn't request ID GPIO
  113. [ 0.285659] sun4i-usb-phy 1c19400.phy: Couldn't request ID GPIO
  114. [ 4.478185] scpi_protocol scpi: incorrect or no SCP firmware found
  115. [FAILED] Failed to start Create list of requ...ce nodes for the current kernel.
  116. See 'systemctl status kmod-static-nodes.service' for details.
  117. [ OK ] Started Setup Virtual Console.
  118. [ OK ] Started Apply Kernel Variables.
  119. [ OK ] Started Remount Root and Kernel File Systems.
  120. [FAILED] Failed to mount FFS mount.
  121. See 'systemctl status dev-mtp.mount' for details.
  122. [ OK ] Started Journal Service.
  123. Starting Load/Save Random Seed...
  124. Starting Clean RPM db region files at each reboot...
  125. Starting udev Coldplug all Devices...
  126. Starting Flush Journal to Persistent Storage...
  127. Starting Create Static Device Nodes in /dev...
  128. [ OK ] Started Load/Save Random Seed.
  129. [ OK ] Started Flush Journal to Persistent Storage.
  130. [ OK ] Started Clean RPM db region files at each reboot.
  131. [ OK ] Started Create Static Device Nodes in /dev.
  132. [ OK ] Reached target Local File Systems (Pre).
  133. [ OK ] Reached target Local File Systems.
  134. [ OK ] Listening on D-Bus System Message Bus Socket.
  135. Starting StateFS FUSE filesystem, system-wide...
  136. Starting D-Bus System Message Bus...
  137. [ OK ] Listening on Nemo device lock socket.
  138. Starting Mode Control Entity (MCE)...
  139. Starting udev Kernel Device Manager...
  140. Starting Create Volatile Files and Directories...
  141. [ OK ] Started StateFS FUSE filesystem, system-wide.
  142. [ OK ] Started D-Bus System Message Bus.
  143. [ OK ] Started Create Volatile Files and Directories.
  144. [ OK ] Started udev Coldplug all Devices.
  145. [ OK ] Started udev Kernel Device Manager.
  146. Starting udev Wait for Complete Device Initialization...
  147. Starting Get initial bootstate...
  148. Starting Update UTMP about System Boot/Shutdown...
  149. [ OK ] Started Get initial bootstate.
  150. [ OK ] Started Mode Control Entity (MCE).
  151. Starting DSME...
  152. [ OK ] Started Update UTMP about System Boot/Shutdown.
  153. [ OK ] Found device /dev/ttyS0.
  154. [ 9.154734] musb-sunxi 1c19000.usb: Invalid or missing 'dr_mode' property
  155. [ OK ] Stopped StateFS FUSE filesystem, system-wide.
  156. Starting StateFS FUSE filesystem, system-wide...
  157. [ OK ] Started StateFS FUSE filesystem, system-wide.
  158. [ OK ] Stopped StateFS FUSE filesystem, system-wide.
  159. Starting StateFS FUSE filesystem, system-wide...
  160. [ OK ] Started StateFS FUSE filesystem, system-wide.
  161. Starting Clean RPM db region files at each reboot...
  162. Starting Create list of required st... nodes for the current kernel...
  163. [ OK ] Started Clean RPM db region files at each reboot.
  164. [FAILED] Failed to start Create list of requ...ce nodes for the current kernel.
  165. See 'systemctl status kmod-static-nodes.service' for details.
  166. [ OK ] Started udev Wait for Complete Device Initialization.
  167. Starting usb-moded USB gadget controller...
  168. Starting ohm daemon for resource policy management...
  169. [ OK ] Reached target System Initialization.
  170. [ OK ] Started Daily Cleanup of Temporary Directories.
  171. [ OK ] Reached target Timers.
  172. [ OK ] Listening on OpenSSH Server Socket.
  173. [ OK ] Reached target Sockets.
  174. [ OK ] Started Wayland path watcher.
  175. [ OK ] Reached target Paths.
  176. [ OK ] Reached target Basic System.
  177. Starting Indicate boot is done...
  178. Starting Disk Manager...
  179. Starting Telephony service...
  180. Starting GPS (Global Positioning System) Daemon...
  181. Starting Unmutes the A64 sound card at boot for PulseAudio...
  182. Starting Nemo device lock daemon...
  183. Starting Login Service...
  184. [ OK ] Started DSME.
  185. [ OK ] Stopped StateFS FUSE filesystem, system-wide.
  186. Starting StateFS FUSE filesystem, system-wide...
  187. Starting Oneshot stuff for root...
  188. [ OK ] Started GPS (Global Positioning System) Daemon.
  189. [FAILED] Failed to start Unmutes the A64 sound card at boot for PulseAudio.
  190. See 'systemctl status unmute-sound-card.service' for details.
  191. [ OK ] Started StateFS FUSE filesystem, system-wide.
  192. [ OK ] Started Oneshot stuff for root.
  193. [ OK ] Started Telephony service.
  194. [ OK ] Started Login Service.
  195. Starting Permit User Sessions...
  196. Starting Connection service...
  197. Starting Sensor daemon for sensor framework...
  198. [ OK ] Reached target Sound Card.
  199. [ OK ] Started Permit User Sessions.
  200. Starting Authorization Manager...
  201. Starting Start User Session...
  202. [ OK ] Started Serial Getty on ttyS0.
  203. [ OK ] Reached target Login Prompts.
  204. [ OK ] Started Authorization Manager.
  205. [ OK ] Created slice system-autologin.slice.
  206. [ OK ] Started Autologin user 100000.
  207. [ OK ] Started ohm daemon for resource policy management.
  208. [ OK ] Started Sensor daemon for sensor framework.
  209. [ OK ] Started Connection service.
  210. Starting WPA Supplicant daemon...
  211. Starting Hostname Service...
  212. Starting ConnMan VPN service...
  213. [ OK ] Created slice user-100000.slice.
  214. [ OK ] Started ConnMan VPN service.
  215. [ OK ] Started Session c1 of user nemo.
  216. [ OK ] Created slice system-hw\x2dgroups.slice.
  217. [ OK ] Created slice system-create\x2dhome.slice.
  218. Starting Create user home directory...
  219. [ OK ] Started Hostname Service.
  220. [ OK ] Started WPA Supplicant daemon.
  221. [ OK ] Started Disk Manager.
  222. [ OK ] Reached target Network.
  223. [ OK ] Started Create user home directory.
  224. [ OK ] Started Nemo device lock daemon.
  225. Starting User Manager for UID 100000...
  226. [ OK ] Started User Manager for UID 100000.
  227. [ OK ] Started Start User Session.
  228. Starting Inform dsme about runlevel change...
  229. [ OK ] Started Inform dsme about runlevel change.
  230.  
  231. Sailfish OS 3.3.0.16 (Rokua)
  232. Kernel 5.7.19-sfos-g915016070e1e-dirty on an aarch64
  233.  
  234. Pinetab login:
  235.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement