forked from ibm-openbmc/phosphor-debug-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
112 lines (87 loc) · 3.47 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# SPDX-License-Identifier: Apache-2.0
option('tests', type: 'feature', description: 'Build tests')
option('jffs-workaround', type: 'feature',
description : 'Turn on jffs workaround for core file'
)
option('DUMP_BUSNAME', type : 'string',
value : 'xyz.openbmc_project.Dump.Manager',
description : 'The D-Bus busname to own'
)
option('DUMP_OBJPATH', type : 'string',
value : '/xyz/openbmc_project/dump',
description : 'The dump manager D-Bus root'
)
option('BMC_DUMP_OBJPATH', type : 'string',
value : '/xyz/openbmc_project/dump/bmc',
description : 'The BMC dump manager D-Bus object path'
)
option('CORE_FILE_DIR', type : 'string',
value : '/var/lib/systemd/coredump',
description : 'Directory where core dumps are placed'
)
option('OBJ_INTERNAL', type : 'string',
value : '/xyz/openbmc_project/dump/internal/manager',
description : 'Internal dump manager D-Bus object path'
)
option('BMC_DUMP_OBJ_ENTRY', type : 'string',
value : '/xyz/openbmc_project/dump/bmc/entry',
description : 'The BMC dump entry D-Bus object path'
)
option('BMC_DUMP_PATH', type : 'string',
value : '/var/lib/phosphor-debug-collector/dumps/',
description : 'Directory where bmc dumps are placed'
)
option('SYSTEMD_PSTORE_PATH', type : 'string',
value : '/var/lib/systemd/pstore/',
description : 'Path to the systemd pstore directory'
)
option('BMC_DUMP_MAX_SIZE', type : 'integer',
value : 200,
description : 'Maximum size of one bmc dump in kilo bytes'
)
option('BMC_DUMP_MIN_SPACE_REQD', type : 'integer',
value : 20,
description : 'Minimum space required for one bmc dump in kilo bytes'
)
option('BMC_DUMP_TOTAL_SIZE', type : 'integer',
value : 1024,
description : 'Total size of the dump in kilo bytes'
)
option('ELOG_ID_PERSIST_PATH', type : 'string',
value : '/var/lib/phosphor-debug-collector/elogid',
description : 'Path of file for storing elog id\'s, which have associated dumps'
)
option('CLASS_VERSION', type : 'integer',
value : 1,
description : 'Class version to register with Cereal'
)
option('ERROR_MAP_YAML', type : 'string',
value : 'example_errors_watch.yaml',
description : 'YAML filepath containing error object paths'
)
option('host-transport', type : 'string',
value : 'default',
description : 'To specify the host dump transport protocol')
option('openpower-dumps-extension', type: 'feature',
value : 'disabled',
description : 'Enable Open Power specific dumps'
)
# Configurations for openpower-dump extension
# System dump options
option('SYSTEM_DUMP_OBJPATH', type : 'string',
value : '/xyz/openbmc_project/dump/system',
description : 'The system dump manager D-Bus object path'
)
option('SYSTEM_DUMP_OBJ_ENTRY', type : 'string',
value : '/xyz/openbmc_project/dump/system/entry',
description : 'The system dump entry D-Bus object path'
)
# Resource dump options
option('RESOURCE_DUMP_OBJPATH', type : 'string',
value : '/xyz/openbmc_project/dump/resource',
description : 'The resource dump manager D-Bus object path'
)
option('RESOURCE_DUMP_OBJ_ENTRY', type : 'string',
value : '/xyz/openbmc_project/dump/resource/entry',
description : 'The resource dump entry D-Bus object path'
)