Lines Matching refs:update
5 …date subsystem helps you implement over the air \(OTA\) update of OpenHarmony devices. The update …
9 …update packages. It packages each update image, signs the update package, generates the update pac…
11 The update package contains two files: **build\_tools.zip** and **update.bin**.
13 - **build\_tools.zip**: update assistance tools, including the executable files and scripts.
14 …- **update.bin**: TLV-encoded file, in which update contents are serialized and stored in the TL…
16 …The packaging tool signs the **update.bin** file and the generated update package \(**.zip** fi…
20 The update service is used to search, download, and trigger updates.
24 The updater is the core module of the update subsystem. It provides the following functions:
26 …1. Obtains update commands from the misc partition and executes different tasks depending on the …
27 2. Decompresses the update package and verifies its validity.
28 3. Starts the update process and parses the update script.
29 4. Installs the related component packages based on the update script.
30 …erforms post-processing after the update is complete, for example, deleting the update package and…
34 The upgrade app is used to trigger search and download of update packages.
41 …update over a wireless connection. The update package is downloaded to the device through a wirele…
45 …l package is actually a complete image. The update subsystem writes the full package to a partitio…
55 base/update # Update subsystem repository
60 │ ├── resources # UI image resources of the update subsystem, such as animations and progress ba…
62 │ └── utils # Common code of the update subsystem, including the string processing functions a…
70 [update\_app](https://gitee.com/openharmony/update_app)
72 [update\_updateservice](https://gitee.com/openharmony/update_updateservice)
74 [update\_updater](https://gitee.com/openharmony/update_updater)
76 [update\_packaging\_tools](https://gitee.com/openharmony/update_packaging_tools)