From 043bf06a0d35a3cd3b0d3d82cb117a1415a87c3e Mon Sep 17 00:00:00 2001 From: Neil Chen Date: Tue, 19 Jul 2022 23:29:26 +0800 Subject: [PATCH] update readme and drop file executable permission Signed-off-by: Neil Chen --- LICENSE | 0 README.md | 19 ++++++++++--------- README_zh.md | 21 +++++++++++---------- 3 files changed, 21 insertions(+), 19 deletions(-) mode change 100755 => 100644 LICENSE mode change 100755 => 100644 README.md mode change 100755 => 100644 README_zh.md diff --git a/LICENSE b/LICENSE old mode 100755 new mode 100644 diff --git a/README.md b/README.md old mode 100755 new mode 100644 index c45d90e..936c2f0 --- a/README.md +++ b/README.md @@ -14,15 +14,16 @@ Over the Air \(OTA\) provides the remote device update capability. Your devices ``` /base/update/ota_lite -├── frameworks # OTA update implementation, including update package parsing, verification, writing, and updating -│ └── test # Self-test code -│ └── unittest # Unit test code -│ └── source # updater module source code -│ └── updater # updater module code -│ └── verify # Verification algorithm code -├── interfaces -│ └── kits # External APIs for OTA update -├── hals # Chip adaptation code, for example, HiSilicon chip adaptation code is located at device\hisilicon\hardware\update +. +├── frameworks # OTA update implementation, including update package parsing, verification, writing, and updating +│   ├── source # updater module source code +│   │   ├── updater # updater module code +│   │   └── verify # Verification algorithm code +│   └── test # Self-test code +│   └── unittest # Unit test code +├── hals # Chip adaptation code +└── interfaces # External APIs + └── kits # OTA update APIs ``` ## Constraints diff --git a/README_zh.md b/README_zh.md old mode 100755 new mode 100644 index 38b2a72..f17600d --- a/README_zh.md +++ b/README_zh.md @@ -14,15 +14,16 @@ OTA(Over the Air)提供对设备远程升级能力,基于提供的接口 ``` /base/update/ota_lite -├── frameworks # OTA升级实现,主要包括升级包解析验证、写入、升级的功能 -│ └── test # 自测试代码存放目录 -│ └── unittest # 单元测试代码存放目录 -│ └── source # updater组件代码存放目录 -│ └── updater # updater组件代码目录 -│ └── verify # 效验算法代码目录 -├── interfaces -│ └── kits # OTA升级接口,对外接口存放目录 -├── hals # 芯片适配层,比如实现海思芯片实现位于device\hisilicon\hardware\update +. +├── frameworks # OTA升级实现,主要包括升级包解析验证、写入、升级的功能 +│   ├── source # updater组件代码存放目录 +│   │   ├── updater # updater组件代码目录 +│   │   └── verify # 效验算法代码目录 +│   └── test # 自测试代码存放目录 +│   └── unittest # 单元测试代码存放目录 +├── hals # 芯片适配层 +└── interfaces # 对外接口存放目录 + └── kits # OTA升级接口 ``` ## 约束 @@ -76,7 +77,7 @@ OTA(Over the Air)提供对设备远程升级能力,基于提供的接口 ## 相关仓 -[升级服务子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/%E5%8D%87%E7%BA%A7%E6%9C%8D%E5%8A%A1%E5%AD%90%E7%B3%BB%E7%BB%9F.md) +[升级子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/%E5%8D%87%E7%BA%A7%E5%AD%90%E7%B3%BB%E7%BB%9F.md) **update\_ota\_lite**