Guest User

Untitled

a guest
Jun 11th, 2019
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.58 KB | None | 0 0
  1. F:\Kindle\fastboot_win_public>fastboot.exe
  2. usage: fastboot [ <option> ] <command>
  3.  
  4. commands:
  5. getvar <variable> display a bootloader or idme variable
  6. setvar <variable> <value> sets an idme variable
  7. download <filename> download data to memory for use with
  8. future commands
  9. verify <partition> [ <filename> ] verify downloaded data. required if
  10. bootloader is secure
  11. flash <partition> [ <filename> ] flash downloaded data
  12. eraseall wipe the entire flash memory
  13. erase <partition> erase a flash partition
  14. check <partition> crc32 hash test the flash memory
  15. boot [ <filename> ] boot downloaded data
  16. continue exit fastboot and return to
  17. bootloader
  18. reboot reboot the device
  19. powerdown shuts down the device
  20. pass sets LED to green
  21. fail sets LED to red
  22.  
  23. variables:
  24. version-bootloader (read only) version string for the
  25. bootloader
  26. version (read only) version of fastboot
  27. protocol supported
  28. product (read only) name of the product
  29. serialno (read only) fastboot serial number
  30. secure (read only) if "yes" boot images
  31. must be signed
  32. serial (read write) serial number
  33. accel (read write) accelerometer
  34. calibration data
  35. mac (read write) MAC address
  36. sec (read write) manufacturing code
  37. pcbsn (read write) PCB serial number
  38. bootmode (read write) diags, fastboot,
  39. factory, reset, or main (default)
  40. postmode (read write) slow, factory, or
  41. normal (default)
  42.  
  43. partitions:
  44. bootloader bootloader, 376KiB
  45. prod overlaps bootloader, 120KiB
  46. bist bist, 256KiB
  47. userdata userdata, 5KiB
  48. userpartition userpartition
  49. mbr master boot record
  50. kernel primary kernel
  51. diags_kernel diags kernel
  52. system main system (root) partition
  53. diags secondary system (diags) partition
  54. data user data
  55.  
  56. options:
  57. -s <serial number> specify device serial number
  58. -i <vendor id> specify a custom USB vendor id
  59.  
  60. F:\Kindle\fastboot_win_public>fastboot.exe
  61. usage: fastboot [ <option> ] <command>
  62.  
  63. commands:
  64. getvar <variable> display a bootloader or idme variable
  65. setvar <variable> <value> sets an idme variable
  66. download <filename> download data to memory for use with
  67. future commands
  68. verify <partition> [ <filename> ] verify downloaded data. required if
  69. bootloader is secure
  70. flash <partition> [ <filename> ] flash downloaded data
  71. eraseall wipe the entire flash memory
  72. erase <partition> erase a flash partition
  73. check <partition> crc32 hash test the flash memory
  74. boot [ <filename> ] boot downloaded data
  75. continue exit fastboot and return to
  76. bootloader
  77. reboot reboot the device
  78. powerdown shuts down the device
  79. pass sets LED to green
  80. fail sets LED to red
  81.  
  82. variables:
  83. version-bootloader (read only) version string for the
  84. bootloader
  85. version (read only) version of fastboot
  86. protocol supported
  87. product (read only) name of the product
  88. serialno (read only) fastboot serial number
  89. secure (read only) if "yes" boot images
  90. must be signed
  91. serial (read write) serial number
  92. accel (read write) accelerometer
  93. calibration data
  94. mac (read write) MAC address
  95. sec (read write) manufacturing code
  96. pcbsn (read write) PCB serial number
  97. bootmode (read write) diags, fastboot,
  98. factory, reset, or main (default)
  99. postmode (read write) slow, factory, or
  100. normal (default)
  101.  
  102. partitions:
  103. bootloader bootloader, 376KiB
  104. prod overlaps bootloader, 120KiB
  105. bist bist, 256KiB
  106. userdata userdata, 5KiB
  107. userpartition userpartition
  108. mbr master boot record
  109. kernel primary kernel
  110. diags_kernel diags kernel
  111. system main system (root) partition
  112. diags secondary system (diags) partition
  113. data user data
  114.  
  115. options:
  116. -s <serial number> specify device serial number
  117. -i <vendor id> specify a custom USB vendor id
  118.  
  119. F:\Kindle\fastboot_win_public>fastboot getvar serial
  120. getvar:serial FAILED (command write failed (No error))
  121. finished. total time: 0.003s
  122.  
  123. F:\Kindle\fastboot_win_public>fastboot check userdata
  124. checking 'userdata'...
  125. FAILED (command write failed (No error))
  126. finished. total time: 0.003s
  127.  
  128. F:\Kindle\fastboot_win_public>fastboot check data
  129. checking 'data'...
  130. FAILED (command write failed (No error))
  131. finished. total time: 0.005s
  132.  
  133. F:\Kindle\fastboot_win_public>fastboot pass
  134. turning on led...
  135. FAILED (command write failed (No error))
  136. finished. total time: 0.003s
  137.  
  138. F:\Kindle\fastboot_win_public>fastboot fail
  139. turning on led...
  140. FAILED (command write failed (No error))
  141. finished. total time: 0.002s
  142.  
  143. F:\Kindle\fastboot_win_public>fastboot powerdown
  144. shutting down...
  145. FAILED (command write failed (No error))
  146. finished. total time: 0.042s
  147.  
  148. F:\Kindle\fastboot_win_public>
Advertisement
Add Comment
Please, Sign In to add comment