diff --git a/niobeu4/README_zh.md b/niobeu4/README_zh.md index 634cbe61707c54c934c0f648bd3b8aea781ffb1c..e843c36cb8defdc647da52487d8fd6814bc47973 100755 --- a/niobeu4/README_zh.md +++ b/niobeu4/README_zh.md @@ -70,13 +70,13 @@ OpenHarmony基于ESP32平台提供了多种开放能力,提供的关键组件 ### 更新Ubuntu源 -- 打开`sources.list`文件。 +- 打开`sources.list`文件: ``` sudo gedit /etc/apt/sources.list ``` -- 将与系统对应版本源复制并覆盖至上述打开的文件中,保存关闭,执行如下命令。(建议使用[ubuntu源](https://developer.aliyun.com/mirror/ubuntu))。 +- 将与系统对应版本源复制并覆盖至上述打开的文件中,保存关闭,执行如下命令。(建议使用[ubuntu源](https://developer.aliyun.com/mirror/ubuntu)): ``` sudo apt update @@ -84,13 +84,13 @@ sudo apt update ### 安装依赖工具与库 -- 安装ccache(用于加速编译)。 +- 安装ccache(用于加速编译): ```shell sudo apt install ccache ``` -- 安装git工具并配置用户名和邮箱。 +- 安装git工具并配置用户名和邮箱: ``` sudo apt install git git-lfs @@ -98,26 +98,26 @@ git config --global user.email "xxx" git config --global user.name "xxx" ``` -- 设置Python软链接为Python3.8。 +- 设置Python软链接为Python3.8: ```shell sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1 ``` -- 安装并升级Python包管理工具(pip3)。 +- 安装并升级Python包管理工具(pip3): ``` sudo apt-get install python3-setuptools python3-pip -y sudo pip3 install --upgrade pip ``` -- 安装Python3工具包。 +- 安装Python3工具包: ``` pip3 install --trusted-host mirrors.aliyun.com -i http://mirrors.aliyun.com/pypi/simple jinja2 ohos-build==0.4.6 esptool ``` -- 将hb工具添加至环境变量。 +- 将hb工具添加至环境变量: ``` gedit ~/.bashrc #打开环境配置文件 @@ -140,39 +140,39 @@ sudo mv repo /usr/local/bin/ ### 安装交叉编译工具链 -新建一个目录,用来存放下载的编译工具链。 +新建一个目录,用来存放下载的编译工具链: ```shell mkdir -p ~/download && cd ~/download ``` -下载交叉编译工具链压缩包。 +下载交叉编译工具链压缩包: ```shell wget https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_4_0-esp-2021r2-linux-amd64.tar.gz ``` -将交叉编译工具添加至环境变量。 +将交叉编译工具添加至环境变量: -- 解压工具链。 +- 解压工具链 ```shell sudo tar axvf xtensa-esp32-elf-gcc8_4_0-esp-2021r2-linux-amd64.tar.gz -C /opt/ ``` -- 打开配置文件。 +- 打开配置文件 ```shell gedit ~/.bashrc ``` -- 在文件末尾添加。 +- 在文件末尾添加 ```shell export PATH=$PATH:/opt/xtensa-esp32-elf/bin ``` -- 使配置生效。 +- 使配置生效 ```shell source ~/.bashrc @@ -190,19 +190,19 @@ repo start master --all ## 构建源码 -- 进入源码根目录,执行`hb set`命令并选择openvalley下项目`iotlink`。 +- 进入源码根目录,执行`hb set`命令并选择openvalley下项目`iotlink`: ```shell hb set ``` -- 执行`hb build -f`脚本构建产生固件。 +- 执行`hb build -f`脚本构建产生固件: ```shell hb build -f ``` - 构建成功会提示类似如下信息。 + 构建成功会提示类似如下信息: ``` [OHOS INFO] iotlink build success