Difference between revisions of "R-Car/Boards/Yocto-Gen3-CommonFAQ/How to flash separate image of Android."

From eLinux.org
Jump to: navigation, search
(Created page with "== How to flash separate image of Android == If you want to flash specific image only, you can flash it using fastboot command. <syntaxhighlight lang=text> adb reboot fastbo...")
 
 
Line 17: Line 17:
 
fastboot flash system <path to system.img file>  
 
fastboot flash system <path to system.img file>  
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
[[Category: R-Car/FAQ/Gen3]]
 +
[[Category: R-Car/FAQ/Gen3/Android]]

Latest revision as of 19:42, 16 November 2020

How to flash separate image of Android

If you want to flash specific image only, you can flash it using fastboot command.

adb reboot fastboot
fastboot flash <partition> <img file>

Example(flash boot/bootloader/vendor/system.img):

adb reboot fastboot
fastboot flash boot <path to boot.img file> 
fastboot flash bootloader <path to bootloader.img file> 
fastboot reboot fastboot # load to userspace fastboot 
fastboot flash vendor <path to vendor.img file> 
fastboot flash system <path to system.img file>