diff options
author | 2018-05-23 00:36:01 +0000 | |
---|---|---|
committer | 2018-05-23 00:36:01 +0000 | |
commit | d07aebc3b817928d65273ddaf9aac16a5d729f04 (patch) | |
tree | dcebe869f9e47a20e74e039667a1c7a1b08e7064 /release/configure | |
parent | 8489986bf80269ca8a70d1ad4f5957102b3f5665 (diff) | |
parent | 48986193e80146241cba0a69577a9d831536300e (diff) |
Merge "Generating dmm package by using rpm for centos Add 'make pkg-rpm' in building script."
Diffstat (limited to 'release/configure')
-rw-r--r-- | release/configure/module_config.json | 28 |
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", }, + ***************************/ ] } |