提交 cb519fea 编写于 作者: H hughes 提交者: jinguang

!1226 ota_lite仓部件化改名

* Signed-off-by: hughes802 <h.hu@huawei.com>
上级 6bc31bd4
......@@ -49,7 +49,7 @@ Basic Software Services includes the following sub-systems:
| Bootstrapping for Lite | [startup_bootstrap_lite](https://gitee.com/openharmony/startup_bootstrap_lite) | bootstrap provides starting API to bootstrap system abilities for OpenHarmony lite system. |
| init | [startup_init_lite](https://gitee.com/openharmony/startup_init_lite) | init is used to start all userspace native processes. |
| Application Spawn | [startup_appspawn](https://gitee.com/openharmony/startup_appspawn) | Appspawn is used to spawn application processes. |
| Updating Framework for Lite | [update_ota_lite](https://gitee.com/openharmony/update_ota_lite) | ota_lite provides OTA updating framework for OpenHarmony mini and small system. |
| Updating Framework for Lite | [update_sys_installer_lite](https://gitee.com/openharmony/update_sys_installer_lite) | sys_installer_lite provides OTA updating framework for OpenHarmony mini and small system. |
| Updating App | [update_app](https://gitee.com/openharmony/update_app) | update_app provides user interfaces for end users to upgrade OpenHarmony devices. |
| Update Pakaging Tools | [update_packaging_tools](https://gitee.com/openharmony/update_packaging_tools) | Update Packaging Tools provide tools to build full OTA packages and differential packages. |
| Update Package Installer | [update_updater](https://gitee.com/openharmony/update_updater) | Update Package Installer can verify OTA package, and install the package to the OpenHarmony device. |
......
......@@ -49,7 +49,7 @@ BasicSoftwareService SIG技术栈范围全景图如下图所示:
|轻量启动引导|[startup_bootstrap_lite](https://gitee.com/openharmony/startup_bootstrap_lite)|bootstrap启动引导组件,提供了各服务和功能的启动入口标识。在SAMGR启动时,会调用boostrap标识的入口函数,并启动系统服务。|
|init|[startup_init_lite](https://gitee.com/openharmony/startup_init_lite)|启动引导模块,init进程,内核完成初始化后加载的第一个用户态进程,启动后解析/etc/init.cfg配置文件,并根据解析结果拉起其他系统关键进程,同时分别赋予其对应权限。|
|应用孵化器|[startup_appspawn](https://gitee.com/openharmony/startup_appspawn)|应用孵化模块,appspawn进程,配合轻量级元能力框架子系统,通过轻量级IPC机制接收来自AMS的消息,根据消息解析结果启动元能力进程AbilityMain并赋予其对应权限。|
|轻量升级框架|[update_ota_lite](https://gitee.com/openharmony/update_ota_lite)|OTA(Over the Air)提供对轻量级设备远程升级能力,基于提供的接口进行二次开发后,可以让您的设备轻松支持OTA升级能力。升级子系统对用户屏蔽了底层芯片的差异,对外提供了统一的升级接口。|
|轻量系统安装|[update_sys_installer_lite](https://gitee.com/openharmony/update_sys_installer_lite)|轻量系统安装提供对轻量级设备远程升级能力,基于提供的接口进行二次开发后,可以让您的设备轻松支持OTA升级能力。升级子系统对用户屏蔽了底层芯片的差异,对外提供了统一的升级接口。|
|升级应用|[update_app](https://gitee.com/openharmony/update_app)|升级客户端应用运行于OHOS 上,提供与用户进行交互的界面,并进行升级操作。主要功能包括:<br/>1、触发升级服务组件检查可用的升级包,显示升级包检查的结果;<br/>2、下载升级包,显示下载的进度和状态;<br/>3、触发升级;<br/>4、升级完成后,显示升级后版本信息|
|升级工具|[update_packaging_tools](https://gitee.com/openharmony/update_packaging_tools)|升级包制作工具是用于制作升级包的工具,功能主要包括:全量升级包制作、差分升级包制作以及变分区升级包制作。|
|升级包安装|[update_updater](https://gitee.com/openharmony/update_updater)|升级包安装组件,其功能主要包括读取misc分区信息获取升级包状态,对升级包进行校验,确保升级包合法有效;然后从升级包中解析出升级的可执行程序,创建子进程并启动升级程序。具体升级的动作由升级脚本控制。|
......
......@@ -524,7 +524,7 @@
"https://gitee.com/openharmony/startup_init_lite",
"https://gitee.com/openharmony/startup_syspara_lite",
"https://gitee.com/openharmony/startup_appspawn",
"https://gitee.com/openharmony/update_ota_lite",
"https://gitee.com/openharmony/update_sys_installer_lite",
"https://gitee.com/openharmony/update_app",
"https://gitee.com/openharmony/update_packaging_tools",
"https://gitee.com/openharmony/update_updater",
......@@ -593,7 +593,7 @@
"base/startup/init_lite",
"base/startup/syspara_lite",
"base/startup/appspawn_standard",
"base/update/ota_lite",
"base/update/sys_installer_lite",
"base/update/update_app",
"base/update/packaging_tools",
"base/update/updater",
......
......@@ -24,7 +24,7 @@
|22|startup_bootstrap_lite|base/startup/bootstrap_lite|https://gitee.com/handyohos|zhangxiaotian@huawei.com|https://gitee.com/xionglei6|xionglei6@huawei.com |SIG_BasicSoftwareService|
|23|startup_init_lite|base/startup/init_lite|https://gitee.com/handyohos|zhangxiaotian@huawei.com|https://gitee.com/xionglei6|xionglei6@huawei.com |SIG_BasicSoftwareService|
|24|startup_syspara_lite|base/startup/syspara_lite|https://gitee.com/handyohos|zhangxiaotian@huawei.com|https://gitee.com/xionglei6|xionglei6@huawei.com |SIG_BasicSoftwareService|
|25|update_ota_lite|base/update/ota_lite|https://gitee.com/handyohos|zhangxiaotian@huawei.com|https://gitee.com/hughes802|h.hu@huawei.com |SIG_BasicSoftwareService|
|25|update_sys_installer_lite|base/update/sys_installer_lite|https://gitee.com/handyohos|zhangxiaotian@huawei.com|https://gitee.com/hughes802|h.hu@huawei.com |SIG_BasicSoftwareService|
|26|build_lite|build/lite|https://gitee.com/anguanglin|anguanglin@huawei.com|https://gitee.com/chenmudan|chenmudan@huawei.com|SIG_BuildSystem|
|27|developtools_packing_tool|developtools/packing_tool|https://gitee.com/autumn330|hw.liuwei@huawei.com|https://gitee.com/changzheng6|hanfeng6@huawei.com|SIG_ApplicationFramework|
|28|device_hisilicon_build|device/hisilicon/build|https://gitee.com/yuanwhong|yuanwenhong@hisilicon.com|https://gitee.com/helsingchen|helsing.chen@hisilicon.com|SIG_DriverFramework|
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册