Browse Source

Release v0.0.1

pull/1/MERGE
zhugengyu 3 years ago
parent
commit
d306795ba0
  1. 23
      README.en.md
  2. 4
      README.md
  3. 14
      scripts/mount2vxbox.sh
  4. 20
      scripts/release_tag.sh

23
README.en.md

@ -1,23 +0,0 @@
<!--
* @ : Copyright (c) 2021 Phytium Information Technology, Inc.
*
* SPDX-License-Identifier: Apache-2.0.
*
* @Date: 2021-07-02 09:04:12
* @LastEditTime: 2021-07-02 09:45:42
* @Description:  This files is for
*
* @Modify History:
* Ver   Who        Date         Changes
* ----- ------     --------    --------------------------------------
-->
# Phytium-Standalone-SDK
## Install SDK
```
$ ./sdk/export.sh
fatal: not in a git directory
Gcc compiler package non found!!!
$ source ~/.profile
```

4
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")

14
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

20
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
Loading…
Cancel
Save