Upgrade to SD card

Introduction

This article mainly introduced how to upgrade the firmware on the host to the SD card, which needs to be selected according to the host operating system.Please note the updated firmware type: original firmware or RK firmware

Preparatory work

  • AIO-3399PRO-JD4

  • firmware

  • computer host

  • Dual male usb data cable

  • SD card

Windows

  • Etcher

  • SD Firmware Tool

Etcher is a graphical SD card upgrade tool for Windows, Linux and Mac. Download the way Etcher Official website

SD Firmware Tool download pageto download SD_Firmware_Tool,And decompression.

Upgrade Unified firmware

original firmware :
It is easy to upgrade with Etcher:

  • Select the firmware

  • select device

  • start upgrading

img/Etcher.png

RK firmware :
Run SD_Firmware_Tool.exe:

img/sdfirmwaretool.zh_CN.png

  1. Insert SD card.

  2. Select the device corresponding to the SD card from the combo box.

  3. Check the “SD startup “option.

  4. Click the “select firmware” button and select the firmware in the file dialog box.

  5. Click the “start creating” button.

  6. The warning dialog box will be displayed, and select “yes” to ensure that the correct SD card device is selected.

  7. Wait for the completion of the operation until the prompt “success” dialog box appears:
    img/sdfirmwaretool_done.zh_CN.png

  8. Unplug the SD card.

Linux

After the SD card is connected to the computer with the card reader, the computer will detect the corresponding device.

ls /dev/sdb    		# The situation depends on the specific equipment

Tools

  • dd (ubuntu)

  • Etcher (android、ubuntu)

Etcher under Linux is used in the same way as that under Windows. Please refer to the use method of Etcher under Windows.

Upgrade Unified firmware

original firmware:

sudo apt-get install pv			## install pv
pv -tpreb /path/to/system.img | sudo dd conv=fsync,notrunc of=/dev/sdb  ## Upgrade progress visualization

or

sudo dd conv=fsync,notrunc /path/to/system.img of=/dev/sdb