Luckily there’s now a command line tool called upgrade_tool that allows you to flash the “update.img” firmware files directly from Linux. I’ve already shown how to use it with Radxa Rock, but it’s buried with other instructions, so I’ve decided to make a separate post. This has been tested in Ubuntu 14.04 with Radxa Rock (RK3188) and Measy U2C (RK3066).
Ready? Let’s start by installing upgrade_tool in a terminal:
wget http://dl.radxa.com/rock/tools/linux...Tool_v1.16.zip
unzip Linux_Upgrade_Tool_v1.16.zip
Installation is now complete. You could also choose to add it to your PATH.
Now download the firmware for your device, let’s call it “android-5.0_rk3xxx.img”, and enter recovery more in your device. This is usually done by connecting a USB to micro USB cable between the OTG port of your device and your PC, and press a “recovery” or “reset” button on your device with a sharp object (e.g. toothpick) and turning on the device.
Now complete the firmware upgrade with the two command below:
sudo ./upgrade_tool lf
sudo ./upgrade_tool uf android-5.0_rk3xxx.img
Done. It’s that easy. Now just restart your device to boot the new firmware.
The full output during the firmware update procedure should look like:
$ sudo ./upgrade_tool lf
Lower Format Device,total(2048),current(2044)
Lower Format Device OK.
$ sudo ./upgrade_tool uf android-5.0_rk3xxx.img
Loading firmware...
Support Type:RK30 FW Ver:5.0.02 FW Time:2014-11-27 17:19:47
Loader ver:3.23 Loader Time:2014-10-03 18:08:37
Upgrade firmware ok.
You can also flash individual files (parameter, boot.img, system.img, etc…) with upgrade_tool utility, as well as do some checks with the NAND flash. More details can be found in linux_upgrade_tool_v1.16_help(Chinese).pdf in the zip file used for installation.

Comment