forked from RT-Thread/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request RT-Thread#1129 from Dozingfiretruck/master
add:LuatOS-SOC packages
- Loading branch information
Showing
3 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
# Kconfig file for package LuatOS_SOC | ||
menuconfig PKG_USING_LUATOS_SOC | ||
select RT_USING_DFS | ||
select RT_USING_POSIX if RT_VER_NUM >= 0x40100 | ||
select RT_USING_DFS_ROMFS | ||
select RT_USING_LIBC | ||
select RT_LIBC_USING_FILEIO if RT_VER_NUM >= 0x40100 | ||
bool "LUATOS_SOC : Powerful embedded Lua Engine for IoT devices" | ||
default n | ||
|
||
if PKG_USING_LUATOS_SOC | ||
|
||
config PKG_LUATOS_SOC_PATH | ||
string | ||
default "/packages/system/LuatOS_SOC" | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_LUATOS_SOC_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_LUATOS_SOC_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_LUATOS_SOC_VER | ||
string | ||
default "latest" if PKG_USING_LUATOS_SOC_LATEST_VERSION | ||
|
||
config PKG_USING_LUATOS_SOC_LCD | ||
bool "LuatOS_SOC using lcd" | ||
default n | ||
|
||
config PKG_USING_LUATOS_SOC_EINK | ||
bool "LuatOS_SOC using eink" | ||
default n | ||
|
||
config PKG_LUATOS_SOC_LUAT_HEAP_SIZE | ||
int "LuatOS heap size" | ||
range 1 999 | ||
default 64 | ||
|
||
endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "LuatOS_SOC", | ||
"description": "LUATOS_SOC : Powerful embedded Lua Engine for IoT devices", | ||
"description_zh": "LuatOS_SOC : 面向物联网设备的强大嵌入式Lua引擎", | ||
"enable": "PKG_USING_LUATOS_SOC", | ||
"keywords": [ | ||
"LuatOS_SOC", | ||
"LuatOS" | ||
], | ||
"category": "system", | ||
"author": { | ||
"name": "Dozingfiretruck", | ||
"email": "[email protected]", | ||
"github": "Dozingfiretruck" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/openLuat/luatos-soc-rtt", | ||
"icon": "https://github.com/openLuat/LuatOS/blob/master/logo.jpg", | ||
"homepage": "https://github.com/openLuat/LuatOS/blob/master/README.md", | ||
"doc": "https://wiki.luatos.com/pages/emulator.html", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/openLuat/luatos-soc-rtt.git", | ||
"filename": "Null for git package", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |