Quote:
Originally Posted by Misza
Thank you, sir, will investigate how to set the target partition with fastboot and ing will report on the results.
Of course, won't be attempting to flash other kindle model's firmware (I knew it was a bad idea...).
|
The command syntax should be available to search engines if you can't find it here (it is posted somewhere).
IIRC:
fastboot <action> <destination> <file>
But look it up, don't trust my memory.
The Kindle fastboot is based on the Android application of the same name, so the command syntax should be same or similar even if the command set is different.
man fastboot
Code:
COMMANDS
fastboot update filename
Reflash device from update.zip.
fastboot flashall
Flash boot, system, vendor, and -- if found -- recovery.
fastboot flash partition [filename]
Write a file to a flash partition.
fastboot flashing lock
Locks the device. Prevents flashing.
fastboot flashing unlock
Unlocks the device. Allows flashing any partition except bootloader-related partitions.
fastboot flashing lock_critical
Prevents flashing bootloader-related partitions.
fastboot flashing unlock_critical
Enables flashing bootloader-related partitions.
fastboot flashing get_unlock_ability
Queries bootloader to see if the device is unlocked.
fastboot erase partition
Erase a flash partition.
fastboot format[:[fs type][:[size]] partition
Format a flash partition. Can override the fs type and/or size the bootloader reports.
fastboot getvar variable
Display a bootloader variable.
fastboot boot kernel [ramdisk [second]]
Download and boot kernel.
fastboot flash:raw boot kernel [ramdisk [second]]
Create bootimage and flash it.
fastboot devices [-l]
List all connected devices (with device paths if -l is used).
fastboot continue
Continue with autoboot.
fastboot reboot [bootloader]
Reboot device [into bootloader].
fastboot reboot-bootloader
Reboot device into bootloader.
fastboot help
Show this help message.