aboutsummaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorJiang Wenjiang <jiangwenjiang@huawei.com>2018-05-12 07:00:17 +0800
committerrainbow_0206 <jiangwenjiang@huawei.com>2018-05-22 14:47:52 +0800
commit48986193e80146241cba0a69577a9d831536300e (patch)
treecb8f9292c644c655c662775b51cd160a25c8fc55 /release
parent3a8b1b01c87ede23390657b906f14a49d89624f6 (diff)
Generating dmm package by using rpm for centos
Add 'make pkg-rpm' in building script. Change-Id: I09cd7019dbc8cfa2e4b9dd91597a11ac84de74b6 Signed-off-by: Jiang Wenjiang <jiangwenjiang@huawei.com>
Diffstat (limited to 'release')
-rw-r--r--release/configure/module_config.json28
1 files changed, 15 insertions, 13 deletions
diff --git a/release/configure/module_config.json b/release/configure/module_config.json
index 6b171d8..4532d1a 100644
--- a/release/configure/module_config.json
+++ b/release/configure/module_config.json
@@ -2,22 +2,23 @@
"default_stack_name": "kernel", /*when rd can't be find maybe choose the defualt one*/
"module_list": [
{
- "stack_name": "kernel", /*stack name*/
+ "stack_name": "kernel", /*stack name*/
"function_name": "kernel_stack_register", /*function name*/
- "libname": "./", /*library name, if loadtype is static, this maybe
- null, else must give a library name*/
- "loadtype": "static", /*library load type: static or dynamic*/
- "deploytype": "1", /*deploy model type:model type1, model type2,
- model type3. Indicating single or multi process
- deployment. Used during shared memory initialization.*/
- "maxfd": "1024", /*the max fd supported*/
- "minfd": "0", /*the min fd supported*/
- "priorty": "1", /*priorty when executing, reserv*/
- "stackid": "0", /*stack id, this must be ordered and not be repeated*/
+ "libname": "./", /*library name, if loadtype is static, this maybe
+ null, else must give a library name*/
+ "loadtype": "static", /*library load type: static or dynamic*/
+ "deploytype": "1", /*deploy model type:model type1, model type2,
+ model type3. Indicating single or multi process
+ deployment. Used during shared memory initialization.*/
+ "maxfd": "1024", /*the max fd supported*/
+ "minfd": "0", /*the min fd supported*/
+ "priorty": "1", /*priorty when executing, reserv*/
+ "stackid": "0", /*stack id, this must be ordered and not be repeated*/
},
+ /**************************
+ *this is not a real stack, just an example for multiple stack configurations*
{
- "stack_name": "stackx", /*this is not a real stack, just an example for multiple
- stack configurations*/
+ "stack_name": "stackx",
"function_name": "stackx_register",
"libname": "libstackx.so",
"loadtype": "dynmic",
@@ -27,5 +28,6 @@
"priorty": "1",
"stackid": "1",
},
+ ***************************/
]
}