diff --git a/README.en.md b/README.en.md deleted file mode 100644 index b8fe8de27..000000000 --- a/README.en.md +++ /dev/null @@ -1,23 +0,0 @@ - -# Phytium-Standalone-SDK - -## Install SDK - -``` -$ ./sdk/export.sh -fatal: not in a git directory -Gcc compiler package non found!!! -$ source ~/.profile -``` diff --git a/README.md b/README.md index bd9ee1fb5..13e5d5388 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ * SPDX-License-Identifier: Apache-2.0. * * @Date: 2021-07-01 18:12:33 - * @LastEditTime: 2021-07-01 19:40:51 + * @LastEditTime: 2021-07-02 10:54:18 * @Description:  This files is for * * @Modify History: @@ -60,7 +60,7 @@ $ source ~/.profile ### 2.2 快速使用例程 #### 2.2.1 使用FT2000-4开发板,快速体验SDK ->ft_sdk/baremetal/example/aarch32/hello_world +>ft_sdk/baremetal/example/aarch32_hello_world - 编译例程hello_world ![compiling ft2004](https://images.gitee.com/uploads/images/2021/0701/192403_054be566_8736513.png "compiling ft2004.png") diff --git a/scripts/mount2vxbox.sh b/scripts/mount2vxbox.sh index 18bea62dc..d7505697d 100644 --- a/scripts/mount2vxbox.sh +++ b/scripts/mount2vxbox.sh @@ -1,2 +1,16 @@ +### + # @ : Copyright (c) 2021 Phytium Information Technology, Inc. + # + # SPDX-License-Identifier: Apache-2.0. + # + # @Date: 2021-07-02 09:09:00 + # @LastEditTime: 2021-07-02 10:55:10 + # @Description:  This files is for virtual-box folder mount + # + # @Modify History: + # Ver   Who        Date         Changes + # ----- ------     --------    -------------------------------------- +### +#!/bin/sh sudo mount -t vboxsf 6-2021 /mnt/6-2021 cd /mnt/6-2021 diff --git a/scripts/release_tag.sh b/scripts/release_tag.sh new file mode 100644 index 000000000..c50d329cd --- /dev/null +++ b/scripts/release_tag.sh @@ -0,0 +1,20 @@ +### + # @ : Copyright (c) 2021 Phytium Information Technology, Inc. + # + # SPDX-License-Identifier: Apache-2.0. + # + # @Date: 2021-07-02 10:54:34 + # @LastEditTime: 2021-07-02 10:57:41 + # @Description:  This files is for + # + # @Modify History: + # Ver   Who        Date         Changes + # ----- ------     --------    -------------------------------------- +### +#!/bin/sh + +version=v0.0.1 +git add . +git tag -a $version -m "Release $version" +git commit -m "Release $version" +git push --tags \ No newline at end of file