-
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.
add Efficient and secure memory pool (#1833)
Co-authored-by: RiceChen <[email protected]>
- Loading branch information
Showing
3 changed files
with
65 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,36 @@ | ||
|
||
# Kconfig file for package rmp | ||
menuconfig PKG_USING_RMP | ||
bool "rmp: Efficient and secure memory pool" | ||
default n | ||
|
||
if PKG_USING_RMP | ||
|
||
config PKG_RMP_PATH | ||
string | ||
default "/packages/system/rmp" | ||
|
||
config RMP_USING_DYNAMIC | ||
bool "rmp using dynamic interface" | ||
default n | ||
|
||
config RMP_USING_RTOS | ||
bool "rmp enable rtos" | ||
default y | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_RMP_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_RMP_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_RMP_VER | ||
string | ||
default "latest" if PKG_USING_RMP_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,28 @@ | ||
{ | ||
"name": "rmp", | ||
"description": "rmp: Efficient and secure memory pool", | ||
"description_zh": "rmp: 高效且安全的内存池", | ||
"enable": "PKG_USING_RMP", | ||
"keywords": [ | ||
"rmp" | ||
], | ||
"category": "system", | ||
"author": { | ||
"name": "RiceChen", | ||
"email": "[email protected]", | ||
"github": "RiceChen0" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/RiceChen0/rmp", | ||
"icon": "unknown", | ||
"homepage": "https://github.com/RiceChen0/rmp#readme", | ||
"readme": "rmp Efficient and secure memory pool", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/RiceChen0/rmp.git", | ||
"filename": "Null for git package", | ||
"VER_SHA": "main" | ||
} | ||
] | ||
} |