diff --git a/docker/CHANGELOG.md b/docker/CHANGELOG.md index 9d86d5e86b9b80169494662a960e3f61d37cd825..c293b830db2a72958e65485bffa18a06396cca15 100644 --- a/docker/CHANGELOG.md +++ b/docker/CHANGELOG.md @@ -1,3 +1,9 @@ +### 0.0.7 (2022/02/16) + +增加安装doxygen工具。 + + + ### 0.0.6 (2022/02/10) 1、更新hb。 diff --git a/docker/CHANGELOG_en.md b/docker/CHANGELOG_en.md index a6adf956e2727dace6583fd2760e481aa470e4df..1dac4c8e523bf0c6adf63e1c93d289e5a158254e 100644 --- a/docker/CHANGELOG_en.md +++ b/docker/CHANGELOG_en.md @@ -1,4 +1,10 @@ -### 0.0.5 (2021/06/21) +### 0.0.7 (2022/02/16) + +Added the installation of doxygen. + + + +### 0.0.6(2022/02/10) 1\. Updated hb. diff --git a/docker/Dockerfile b/docker/Dockerfile index 20fffa28a04fee731fcb3dee5feb90e0b26a2439..9e5371eae3bdb34a3cc2e0238bf7e47f65c36e55 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -39,6 +39,7 @@ RUN apt-get update -y \ && apt-get install bison -y \ && apt-get install flex -y \ && apt-get install bc -y \ + && apt-get install doxygen -y \ && apt-get install u-boot-tools -y \ && apt-get install gcc-arm-linux-gnueabi -y \ && apt-get install build-essential \ diff --git a/docker/README.md b/docker/README.md index f19f4f1b592baf4a4505095507a8c9851b823a43..6f536192dcc4a7ea2254aab53b7ea6049ce558dd 100755 --- a/docker/README.md +++ b/docker/README.md @@ -8,7 +8,7 @@ OpenHarmony的Docker镜像托管在**HuaweiCloud SWR**上,开发者可以通 | Docker镜像仓库 | 标签 | 说明 | | :----------------------------------------------------------- | :------ | :----------------------------------------------------------- | -| `swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker` | `0.0.6` | 已经预安装OpenHarmony版本的编译环境,支持轻量系统类设备(参考内存≥128KB)和小型系统类设备(参考内存≥1MB)的版本构建。 | +| `swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker` | `0.0.7` | 已经预安装OpenHarmony版本的编译环境,支持轻量系统类设备(参考内存≥128KB)和小型系统类设备(参考内存≥1MB)的版本构建。 | ### 使用方式及步骤 @@ -16,11 +16,11 @@ OpenHarmony的Docker镜像托管在**HuaweiCloud SWR**上,开发者可以通 1. 获取Docker镜像 ``` - docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.6 + docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.7 ``` 2. 进入OpenHarmony代码根目录执行如下命令,从而进入Docker构建环境 ``` - docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.6 + docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.7 ``` 3. 通过如下命令启动不同平台的编译 ``` diff --git a/docker/README_en.md b/docker/README_en.md index 708213426c4690b2c14b7eb395f04376b5254b06..c41dab5a571836e7fc860fc60cef2423daa165f0 100644 --- a/docker/README_en.md +++ b/docker/README_en.md @@ -8,7 +8,7 @@ The Docker image of OpenHarmony is hosted on [HUAWEI Cloud SWR](https://auth.hua | Docker Image Repository | Tag | Description | | :----------------------------------------------------------- | :------ | :----------------------------------------------------------- | -| `swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker` | `0.0.6` | The OpenHarmony build environment has been pre-installed. This repository applies to Mini-System Devices (reference memory ≥ 128 KB) and Small-System Devices (reference memory ≥ 1 MB). | +| `swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker` | `0.0.7` | The OpenHarmony build environment has been pre-installed. This repository applies to Mini-System Devices (reference memory ≥ 128 KB) and Small-System Devices (reference memory ≥ 1 MB). | ### Usage @@ -16,11 +16,11 @@ The Docker image of OpenHarmony is hosted on [HUAWEI Cloud SWR](https://auth.hua 1. Obtain the Docker image. ``` - docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.6 + docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.7 ``` 2. Go to the root directory of OpenHarmony code and run the following command to access the Docker build environment: ``` - docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.6 + docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:0.0.7 ``` 3. Run the following script to start building for different platforms. ``` diff --git a/docker/build.sh b/docker/build.sh index b67f8cf68aab99806f7c2907231393206b2dbd79..0c8b1fc8b366bf308a245a0e0d2de01be4986ba9 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -docker build -t openharmony-docker:0.0.6 . +docker build -t openharmony-docker:0.0.7 . diff --git a/docker/standard/CHANGELOG.md b/docker/standard/CHANGELOG.md index b0dc49b1b65b61076f45792a03f39d037122f690..c37b6bc9eefa502a81f7a28c37063a16ca665504 100644 --- a/docker/standard/CHANGELOG.md +++ b/docker/standard/CHANGELOG.md @@ -1,3 +1,7 @@ + ### 0.0.8(2022/01/16) + +新增安装doxygen。 + ### 0.0.7(2022/01/11) 新增安装genext2fs和liblz4-tool。 diff --git a/docker/standard/CHANGELOG_en.md b/docker/standard/CHANGELOG_en.md index 23a128c43f35fdfb11c05c05af5099b4ae6f321d..ce1cceda1cc1fab4f061a0b3dd3db106a88ad27c 100644 --- a/docker/standard/CHANGELOG_en.md +++ b/docker/standard/CHANGELOG_en.md @@ -1,3 +1,7 @@ + ### 0.0.8 (2022/01/16) + +Added the installation of doxygen. + ### 0.0.7 (2022/01/11) Added the installation of genext2fs and liblz4-tool. diff --git a/docker/standard/Readme-en.md b/docker/standard/Readme-en.md index fcc5cf4339bbe2b0310f35a0e070fae848d6decf..cdfc3cc4a00bccf3d43cfbd20716d7b7979f3258 100755 --- a/docker/standard/Readme-en.md +++ b/docker/standard/Readme-en.md @@ -8,11 +8,11 @@ The Docker image of OpenHarmony is hosted on [HUAWEI Cloud SWR](https://auth.hua 1. Obtain the Docker image. ``` -docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.7 +docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.8 ``` 2. Go to the root directory of OpenHarmony code and run the following command to access the Docker build environment: ``` -docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.7 +docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.8 ``` ### Building for Standard-System Devices (reference memory ≥ 128 MB) diff --git a/docker/standard/Readme.md b/docker/standard/Readme.md index 7f239102756b60e154265c3d7e767db2694469a6..5997c8b0ade534df555b6c10dda852c26470c1fe 100755 --- a/docker/standard/Readme.md +++ b/docker/standard/Readme.md @@ -8,11 +8,11 @@ OpenHarmony的Docker镜像托管在HuaweiCloud SWR上。开发者可以通过该 1. 获取Docker镜像。 ``` -docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.7 +docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.8 ``` 2. 进入OpenHarmony代码根目录执行如下命令,从而进入Docker构建环境。 ``` -docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.7 +docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.8 ``` ### 编译源码-标准系统类设备(参考内存≥128MB) diff --git a/docker/standard/build.sh b/docker/standard/build.sh index 7becb89d88f900075950347442c812fc6c734505..d51927c8ef85f25177137361ea5e22fa0c3da081 100755 --- a/docker/standard/build.sh +++ b/docker/standard/build.sh @@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -docker build -t openharmony-docker-standard:0.0.7 . +docker build -t openharmony-docker-standard:0.0.8 . diff --git a/docker/standard/dockerfile b/docker/standard/dockerfile index 33db49299bf2ecbc6505cf6ab43b2fd181dd7307..5451542fc8a01443781d940093001760ad4bfc5b 100755 --- a/docker/standard/dockerfile +++ b/docker/standard/dockerfile @@ -91,6 +91,7 @@ RUN apt-get update \ python3-pip \ cpio \ genext2fs \ + doxygen \ liblz4-tool \ && rm -rf /bin/sh /usr/bin/python /usr/bin/python3 \ && ln -s /bin/bash /bin/sh \ diff --git a/en/device-dev/get-code/gettools-acquire.md b/en/device-dev/get-code/gettools-acquire.md index 27055822bc419cf22a635389b6c3765a8a54b711..21e5bccc54e32782a1d0b39b2cd2b4101d6d67e1 100644 --- a/en/device-dev/get-code/gettools-acquire.md +++ b/en/device-dev/get-code/gettools-acquire.md @@ -30,7 +30,7 @@ OpenHarmony provides the following two types of Docker environments for you to q
swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker
swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard
swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker
swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard