harmony 鸿蒙Update

  • 2022-08-09
  • 浏览 (498)

Update

Introduction

The Update subsystem helps you implement over the air (OTA) update of OpenHarmony devices. The update subsystem consists of the following:

  • Packaging tool

    The packaging tool is developed using Python and deployed on the PC to prepare update packages. It packages each update image, signs the update package, generates the update package execution script, and finally creates an update package. After the execution script is run on a OpenHarmony device, the device parses and executes the script to complete the update process.

    The update package contains two files: build_tools.zip and update.bin.

    • build_tools.zip: update assistance tools, including the executable files and scripts.
    • update.bin: TLV-encoded file, in which update contents are serialized and stored in the TLV format.

    The packaging tool signs the update.bin file and the generated update package (.zip file) independently.

  • Update service

    The update service is used to search, download, and trigger updates.

  • Updater

    The updater is the core module of the update subsystem. It provides the following functions:

    1. Obtains update commands from the misc partition and executes different tasks depending on the commands.
    2. Decompresses the update package and verifies its validity.
    3. Starts the update process and parses the update script.
    4. Installs the related component packages based on the update script.
    5. Performs post-processing after the update is complete, for example, deleting the update package and recording the update status.
  • Update app

    The upgrade app is used to trigger search and download of update packages.

Before you get started, familiarize yourself with the following concepts:

  • OTA

    OTA is an implementation of update over a wireless connection. The update package is downloaded to the device through a wireless connection. The device then performs update through the update subsystem.

  • Full package

    A full package is actually a complete image. The update subsystem writes the full package to a partition to update this partition.

  • Differential package

    A differential package is created based on the difference data of two specific versions (source version and target version), which is generated by using bsdiff.

Directory Structure

base/update             # Update subsystem repository
├── app         	# Update app code
├── packaging_tools     # Packaging tool code
├── updater    		# Updater code
│   ├── interfaces  	# External APIs
│   ├── resources 	# UI image resources of the update subsystem, such as animations and progress bar images
│   ├── services  	# Updater logic code
│   └── utils  		# Common code of the update subsystem, including the string processing functions and file processing functions
└── updateservice 	# Update service code

Repositories Involved

Update subsystem

update_app

update_updateservice

update_updater

update_packaging_tools

你可能感兴趣的鸿蒙文章

harmony 鸿蒙ArkCompiler Runtime

harmony 鸿蒙DeviceProfile

harmony 鸿蒙System Ability Manager

harmony 鸿蒙Security

harmony 鸿蒙Ability Framework

harmony 鸿蒙Account

harmony 鸿蒙AI

harmony 鸿蒙ArkUI

harmony 鸿蒙Bundle Management

harmony 鸿蒙Common Event and Notification

0  赞