Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/utest_auto_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get -yqq install scons qemu-system git
pip3 install kconfiglib
pip3 install git+https://github.com/sysprog21/Kconfiglib

- name: Install ToolChains
shell: bash
Expand Down
6 changes: 4 additions & 2 deletions bsp/k230/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,14 @@ $ sudo apt install -y scons python3-pip u-boot-tools patch

### 3.2.2. 一些 python 软件包

因为本 BSP 只在 RT-Thread v5.1.0 以上才支持,所以需要确保本地已经安装过 kconfiglib。采用清华源是为了加快安装速度。
因为本 BSP 只在 RT-Thread v5.1.0 以上才支持,所以需要确保本地已经安装过 kconfiglib。

```shell
$ pip3 install kconfiglib -i https://pypi.tuna.tsinghua.edu.cn/simple
$ pip3 install git+https://github.com/sysprog21/Kconfiglib
```

注意:如果下载速度较慢,可以使用 git 代理或设置 pip 镜像源来加速安装。

另外还需要一些软件包用于 rttpkgtool 打包。

```shell
Expand Down
8 changes: 8 additions & 0 deletions bsp/qemu-vexpress-a9/.config
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,7 @@ CONFIG_RT_PAGE_MAX_ORDER=11
# CONFIG_PKG_USING_RVBACKTRACE is not set
# CONFIG_PKG_USING_HPATCHLITE is not set
# CONFIG_PKG_USING_THREAD_METRIC is not set
# CONFIG_PKG_USING_UORB is not set
# end of tools packages

#
Expand Down Expand Up @@ -836,6 +837,7 @@ CONFIG_RT_PAGE_MAX_ORDER=11
# CONFIG_PKG_USING_R_RHEALSTONE is not set
# CONFIG_PKG_USING_HEARTBEAT is not set
# CONFIG_PKG_USING_MICRO_ROS_RTTHREAD_PACKAGE is not set
# CONFIG_PKG_USING_CHERRYECAT is not set
# end of system packages

#
Expand Down Expand Up @@ -992,6 +994,12 @@ CONFIG_RT_PAGE_MAX_ORDER=11
# CONFIG_PKG_USING_GD32_ARM_CMSIS_DRIVER is not set
# CONFIG_PKG_USING_GD32_ARM_SERIES_DRIVER is not set
# end of GD32 Drivers

#
# HPMicro SDK
#
# CONFIG_PKG_USING_HPM_SDK is not set
# end of HPMicro SDK
# end of HAL & SDK Drivers

#
Expand Down
4 changes: 4 additions & 0 deletions bsp/qemu-vexpress-a9/rtconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,10 @@
/* GD32 Drivers */

/* end of GD32 Drivers */

/* HPMicro SDK */

/* end of HPMicro SDK */
/* end of HAL & SDK Drivers */

/* sensors drivers */
Expand Down
5 changes: 4 additions & 1 deletion bsp/ultrarisc/ur_dp1000_evb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,11 @@ export RTT_CC_PREFIX=riscv64-unknown-linux-musl-

```shell
sudo apt install scons python3-pip
pip install kconfiglib
pip install git+https://github.com/sysprog21/Kconfiglib
```

注意:如果下载速度较慢,可以使用 git 代理或设置 pip 镜像源来加速安装。

### 4.2.3. 编译

```shell
Expand Down
2 changes: 1 addition & 1 deletion tools/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
scons>=4.0.1
requests>=2.27.1
tqdm>=4.67.1
kconfiglib>=13.7.1
kconfiglib @ git+https://github.com/sysprog21/Kconfiglib
PyYAML>=6.0
Loading