• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 配置其他子系统
2
3
4除上述子系统之外,还有一些必要但是无需进行移植的子系统。如:分布式任务调度子系统、DFX子系统。
5
6
7  这些子系统添加方式比较简单,在“vendor/MyVendorCompany/MyProduct/config.json”文件中进行如下配置即可:
8
9```
10{
11  "subsystem": "distributed_schedule",
12  "components": [
13    { "component": "system_ability_manager", "features":[] }  # 此处部件名不同版本可能有变化,请根据实际代码填写
14  ]
15},
16{
17  "subsystem": "hiviewdfx",
18  "components": [
19    { "component": "hilog_lite", "features":[] },
20    { "component": "hievent_lite", "features":[] }
21  ]
22},
23```
24