File tree Expand file tree Collapse file tree 3 files changed +70
-0
lines changed
Expand file tree Collapse file tree 3 files changed +70
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ source "$PKGS_DIR/packages/system/minIni/Kconfig"
3131source "$PKGS_DIR/packages/system/qboot/Kconfig"
3232source "$PKGS_DIR/packages/system/Ppool/Kconfig"
3333source "$PKGS_DIR/packages/system/openamp/Kconfig"
34+ source "$PKGS_DIR/packages/system/rpmsg-lite/Kconfig"
3435source "$PKGS_DIR/packages/system/lpm/Kconfig"
3536source "$PKGS_DIR/packages/system/tlsf/Kconfig"
3637source "$PKGS_DIR/packages/system/event_recorder/Kconfig"
Original file line number Diff line number Diff line change 1+
2+ # Kconfig file for package rpmsg-lite
3+ menuconfig PKG_USING_RPMSG_LITE
4+ bool "rpmsg-lite: rpmsg-lite for RT-Thread"
5+ default n
6+
7+ if PKG_USING_RPMSG_LITE
8+ config PKG_RPMSG_LITE_PATH
9+ string
10+ default "/packages/system/rpmsg-lite"
11+
12+ config PKG_RPMSG_LITE_CUSTOM_CONFIG
13+ bool "rpmsg-lite use custom config"
14+ default n
15+
16+ choice
17+ prompt "Version"
18+ default PKG_USING_RPMSG_LITE_LATEST_VERSION
19+ help
20+ Select this package version
21+
22+ config PKG_USING_RPMSG_LITE_V510
23+ bool "v5.1.0"
24+
25+ config PKG_USING_RPMSG_LITE_LATEST_VERSION
26+ bool "latest"
27+ endchoice
28+
29+ config PKG_RPMSG_LITE_VER
30+ string
31+ default "v5.1.0" if PKG_USING_RPMSG_LITE_V510
32+ default "latest" if PKG_USING_RPMSG_LITE_LATEST_VERSION
33+
34+ endif
35+
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " rpmsg-lite" ,
3+ "description" : " rpmsg-lite for rt-thread" ,
4+ "description_zh" : " RT-Thread rpmsg-lite 软件包" ,
5+ "enable" : " PKG_USING_RPMSG_LITE" ,
6+ "keywords" : [
7+ " rpmsg-lite"
8+ ],
9+ "category" : " system" ,
10+ "author" : {
11+ "name" : " flyingcys" ,
12+ 13+ "github" : " flyingcys"
14+ },
15+ "license" : " Apache-2.0" ,
16+ "repository" : " https://github.com/flyingcys/rpmsg-lite" ,
17+ "icon" : " unknown" ,
18+ "homepage" : " https://github.com/flyingcys/rpmsg-lite#readme" ,
19+ "doc" : " unknown" ,
20+ "site" : [
21+ {
22+ "version" : " v5.1.0" ,
23+ "URL" : " https://github.com/flyingcys/rpmsg-lite/archive/v5.1.0.zip" ,
24+ "filename" : " rpmsg-lite-5.1.0.zip" ,
25+ "VER_SHA" : " "
26+ },
27+ {
28+ "version" : " latest" ,
29+ "URL" : " https://github.com/flyingcys/rpmsg-lite.git" ,
30+ "filename" : " rpmsg-lite.zip" ,
31+ "VER_SHA" : " master"
32+ }
33+ ]
34+ }
You can’t perform that action at this time.
0 commit comments