-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4149ba0
commit 8a52d26
Showing
3 changed files
with
78 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,31 @@ | ||
|
||
# Kconfig file for package RVBacktrace | ||
menuconfig PKG_USING_RVBACKTRACE | ||
bool "RISC-V Minimalist Stack Traceback Components." | ||
default n | ||
|
||
if PKG_USING_RVBACKTRACE | ||
|
||
config PKG_RVBACKTRACE_PATH | ||
string | ||
default "/packages/tools/RVBacktrace" | ||
|
||
choice | ||
prompt "Version" | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_RVBACKTRACE_V100 | ||
bool "v1.0.1" | ||
|
||
config PKG_USING_RVBACKTRACE_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_RVBACKTRACE_VER | ||
string | ||
default "v1.0.1" if PKG_USING_RVBACKTRACE_V100 | ||
default "latest" if PKG_USING_RVBACKTRACE_LATEST_VERSION | ||
|
||
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,46 @@ | ||
{ | ||
"name": "RVBacktrace", | ||
"description": "RISC-V Minimalist Stack Traceback Components.", | ||
"description_zh": "RISC-V 极简栈回溯组件", | ||
"keywords": [ | ||
"risc-v", | ||
"backtrace", | ||
"RVBacktrace" | ||
], | ||
"category": "tools", | ||
"author": { | ||
"name": "Yaochenger", | ||
"email": "[email protected]", | ||
"github": "Yaochenger" | ||
}, | ||
"repository": "https://github.com/Yaochenger/RvBacktrace", | ||
"license": "Apache-2.0", | ||
"enable": "PKG_USING_RVBACKTRACE", | ||
"keywords": [ | ||
"RVBacktrace" | ||
], | ||
"category": "tools", | ||
"author": { | ||
"name": "Yaochenger", | ||
"email": "[email protected]", | ||
"github": "Yaochenger" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/Yaochenger/RvBacktrace", | ||
"icon": "unknown", | ||
"homepage": "https://github.com/Yaochenger/RvBacktrace#readme", | ||
"doc": "unknown", | ||
"site": [ | ||
{ | ||
"version": "v1.0.1", | ||
"URL": "https://github.com/Yaochenger/RvBacktrace/archive/1.0.1.zip", | ||
"filename": "RvBacktrace-1.0.1.zip" | ||
}, | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/Yaochenger/RvBacktrace.git", | ||
"filename": "RvBacktrace.zip", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |