Advertisement
Guest User

Untitled

a guest
Jul 5th, 2022
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.31 KB | None | 0 0
  1. PS C:\Users\icanbo\Desktop\root\ADBandFastboot> fastboot erase data
  2. erasing 'data'...
  3. FAILED (remote: Check device console.)
  4. finished. total time: 0.006s
  5. PS C:\Users\icanbo\Desktop\root\ADBandFastboot> fastboot erase cache
  6. erasing 'cache'...
  7. FAILED (remote: Check device console.)
  8. finished. total time: 0.006s
  9. PS C:\Users\icanbo\Desktop\root\ADBandFastboot> gci -filter *.img | where {$_.Name.split('.')[0] -match 'boot|cpucp|dtbo|modem|oplusstanvbk|oplus_sec|qweslicstore|shrm|splash|vbmeta|vbmeta_vendor|vbmeta_system|vendor_boot|vm-bootsys'} | foreach-object { fastboot.exe flash $($_.Name.split('.')[0]) $_.Name }
  10. target reported max download size of 805306368 bytes
  11. sending 'boot' (10942 KB)...
  12. OKAY [ 0.311s]
  13. writing 'boot'...
  14. OKAY [ 0.027s]
  15. finished. total time: 0.341s
  16. target reported max download size of 805306368 bytes
  17. sending 'cpucp' (0 KB)...
  18. OKAY [ 0.005s]
  19. writing 'cpucp'...
  20. OKAY [ 0.005s]
  21. finished. total time: 0.013s
  22. target reported max download size of 805306368 bytes
  23. sending 'dtbo' (174 KB)...
  24. OKAY [ 0.008s]
  25. writing 'dtbo'...
  26. OKAY [ 0.006s]
  27. finished. total time: 0.016s
  28. target reported max download size of 805306368 bytes
  29. sending 'modem' (44620 KB)...
  30. OKAY [ 1.257s]
  31. writing 'modem'...
  32. OKAY [ 0.111s]
  33. finished. total time: 1.370s
  34. target reported max download size of 805306368 bytes
  35. sending 'oplusstanvbk' (0 KB)...
  36. OKAY [ 0.003s]
  37. writing 'oplusstanvbk'...
  38. OKAY [ 0.005s]
  39. finished. total time: 0.009s
  40. target reported max download size of 805306368 bytes
  41. sending 'oplus_sec' (4 KB)...
  42. OKAY [ 0.003s]
  43. writing 'oplus_sec'...
  44. OKAY [ 0.004s]
  45. finished. total time: 0.009s
  46. target reported max download size of 805306368 bytes
  47. sending 'qweslicstore' (0 KB)...
  48. FAILED ()
  49. finished. total time: 0.003s
  50. target reported max download size of 805306368 bytes
  51. sending 'shrm' (1 KB)...
  52. OKAY [ 0.003s]
  53. writing 'shrm'...
  54. OKAY [ 0.005s]
  55. finished. total time: 0.011s
  56. target reported max download size of 805306368 bytes
  57. sending 'splash' (12 KB)...
  58. OKAY [ 0.004s]
  59. writing 'splash'...
  60. OKAY [ 0.005s]
  61. finished. total time: 0.010s
  62. target reported max download size of 805306368 bytes
  63. sending 'stock_boot_OOS12' (196608 KB)...
  64. OKAY [ 5.547s]
  65. writing 'stock_boot_OOS12'...
  66. FAILED (remote: (stock_boot_OOS12_b) No such partition)
  67. finished. total time: 5.556s
  68. target reported max download size of 805306368 bytes
  69. sending 'vbmeta' (0 KB)...
  70. OKAY [ 0.003s]
  71. writing 'vbmeta'...
  72. OKAY [ 0.005s]
  73. finished. total time: 0.009s
  74. target reported max download size of 805306368 bytes
  75. sending 'vbmeta_system' (0 KB)...
  76. OKAY [ 0.004s]
  77. writing 'vbmeta_system'...
  78. OKAY [ 0.005s]
  79. finished. total time: 0.011s
  80. target reported max download size of 805306368 bytes
  81. sending 'vbmeta_vendor' (0 KB)...
  82. OKAY [ 0.004s]
  83. writing 'vbmeta_vendor'...
  84. OKAY [ 0.004s]
  85. finished. total time: 0.010s
  86. target reported max download size of 805306368 bytes
  87. sending 'vendor_boot' (2049 KB)...
  88. OKAY [ 0.061s]
  89. writing 'vendor_boot'...
  90. OKAY [ 0.011s]
  91. finished. total time: 0.074s
  92. target reported max download size of 805306368 bytes
  93. sending 'vm-bootsys' (0 KB)...
  94. FAILED ()
  95. finished. total time: 0.003s
  96. PS C:\Users\icanbo\Desktop\root\ADBandFastboot> fastboot reboot fastboot
  97. usage: fastboot [ <option> ] <command>
  98.  
  99. commands:
  100. update <filename> reflash device from update.zip
  101. flashall flash boot, system, vendor and if found,
  102. recovery
  103. flash <partition> [ <filename> ] write a file to a flash partition
  104. flashing lock locks the device. Prevents flashing partitions
  105. flashing unlock unlocks the device. Allows user to flash any partition except the ones that are related to bootloader
  106. flashing lock_critical Prevents flashing bootloader related partitions
  107. flashing unlock_critical Enables flashing bootloader related partitions
  108. flashing get_unlock_ability Queries bootloader to see if the device is unlocked
  109. erase <partition> erase a flash partition
  110. format[:[<fs type>][:[<size>]] <partition> format a flash partition.
  111. Can override the fs type and/or
  112. size the bootloader reports.
  113. getvar <variable> display a bootloader variable
  114. boot <kernel> [ <ramdisk> ] download and boot kernel
  115. flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it
  116. devices list all connected devices
  117. continue continue with autoboot
  118. reboot [bootloader] reboot device, optionally into bootloader
  119. reboot-bootloader reboot device into bootloader
  120. help show this help message
  121.  
  122. options:
  123. -w erase userdata and cache (and format
  124. if supported by partition type)
  125. -u do not first erase partition before
  126. formatting
  127. -s <specific device> specify device serial number
  128. or path to device port
  129. -l with "devices", lists device paths
  130. -p <product> specify product name
  131. -c <cmdline> override kernel commandline
  132. -i <vendor id> specify a custom USB vendor id
  133. -b <base_addr> specify a custom kernel base address.
  134. default: 0x10000000
  135. -n <page size> specify the nand page size.
  136. default: 2048
  137. -S <size>[K|M|G] automatically sparse files greater
  138. than size. 0 to disable
  139. PS C:\Users\icanbo\Desktop\root\ADBandFastboot> fastboot reboot
  140. rebooting...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement