Difference between revisions of "Firmware Upgrade"

From Rockchip open source Document
Jump to: navigation, search
Line 26: Line 26:
  
 
 
 
 
 +
  
  
Line 34: Line 35:
 
Rockchip mainline u-boot have support various upgrade ways, such as rockusb/fastboot/ums, each of them could be used.
 
Rockchip mainline u-boot have support various upgrade ways, such as rockusb/fastboot/ums, each of them could be used.
  
It could be entered by issuing "reboot ums/fastboot/rockusb" from linux, <del>or add the&nbsp;[https://github.com/rockchip-linux/u-boot/blob/release/board/rockchip/kylin_rk3036/kylin_rk3036.c#L34 board-spefic key-detection ]code</del><small>(See arch/arm/mach-rockchip/boot_mode.c for common key detect fucntion after 20171218)</small>.
+
It could be entered by issuing "reboot ums/fastboot/rockusb" from linux, <del>or add the&nbsp;[https://github.com/rockchip-linux/u-boot/blob/release/board/rockchip/kylin_rk3036/kylin_rk3036.c#L34 board-spefic key-detection ]code</del>
 +
 
 +
<small>(U-boot have&nbsp;get common key detect support after 20171218, press recovery key and th board can enter rockusb mode)</small>.
  
 
It's also possible to do network/usb-disk upgrade in u-boot, though you must be familiar with u-boot to use them.
 
It's also possible to do network/usb-disk upgrade in u-boot, though you must be familiar with u-boot to use them.

Revision as of 02:26, 20 December 2017

Overall

This guide provides information which will help you choose a firmware upgrade way.

 

MASKROM

MASKROM is the simplest way. 

Belows are the advantages and disadvantages of using maskrom.

Advantages:

  • Avoid brick
  • Simple, unified

Disadvantages:

  • Need a maskrom key

Support update from

  • USB OTG

 



U-boot

Rockchip mainline u-boot have support various upgrade ways, such as rockusb/fastboot/ums, each of them could be used.

It could be entered by issuing "reboot ums/fastboot/rockusb" from linux, or add the board-spefic key-detection code

(U-boot have get common key detect support after 20171218, press recovery key and th board can enter rockusb mode).

It's also possible to do network/usb-disk upgrade in u-boot, though you must be familiar with u-boot to use them.

Belows are the advantages and disadvantages of using u-boot.

Advantages:

  • Common

Disadvantages:

  • Must be familiar with u-boot

Support update from

  • USB OTG
  • USB DISK
  • Network

 

Linux

Both yocto and debian use deb as the package manager, so firmware upgrade could be done by deb installation.

(SDK build scripts can pack kernel/u-boot in deb)

Advantages:

  • standard
  • user-friendly

Disadvantages:

  •  could be brick

 


SD-Card Recovery

By changing boot order in u-boot, it's possible to let u-boot load kernel and rootfs from sd-card first.

We could use it to create a sd-card recovery image. When the board boot into sd-card, the init script run and install kernel/u-boot debian packages, which burn firmware to eMMC.

Advantages:

  • Convenient

Disadvantages:

  • Slow

 

Initramfs/Recovery

Advantages:

  • Powerful

Disadvantages:

  • Slow