Skip to content

Commit a1db8b6

Browse files
authored
add rpmsg-lite (#1666)
1 parent a33662a commit a1db8b6

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

system/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ source "$PKGS_DIR/packages/system/minIni/Kconfig"
3131
source "$PKGS_DIR/packages/system/qboot/Kconfig"
3232
source "$PKGS_DIR/packages/system/Ppool/Kconfig"
3333
source "$PKGS_DIR/packages/system/openamp/Kconfig"
34+
source "$PKGS_DIR/packages/system/rpmsg-lite/Kconfig"
3435
source "$PKGS_DIR/packages/system/lpm/Kconfig"
3536
source "$PKGS_DIR/packages/system/tlsf/Kconfig"
3637
source "$PKGS_DIR/packages/system/event_recorder/Kconfig"

system/rpmsg-lite/Kconfig

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+

system/rpmsg-lite/package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
"email": "[email protected]",
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+
}

0 commit comments

Comments
 (0)