blob: 48e7038fefc7170e26fd877a3266b06504721f79 [file] [log] [blame]
Ramesh Iyyarbb410df2020-08-03 03:13:04 -05001# SPDX-License-Identifier: Apache-2.0
2
Chirag Sharma50427252020-08-11 12:11:38 -05003option('tests', type: 'feature', description: 'Build tests')
4
5option('oe-sdk', type: 'feature', description: 'Enable OE SDK')
6
Ramesh Iyyarbb410df2020-08-03 03:13:04 -05007option('ubifs-workaround', type: 'feature',
8 description : 'Turn on ubi workaround for core file'
9 )
10
11option('DUMP_BUSNAME', type : 'string',
12 value : 'xyz.openbmc_project.Dump.Manager',
13 description : 'The Dbus busname to own'
14 )
15
16option('DUMP_OBJPATH', type : 'string',
17 value : '/xyz/openbmc_project/dump',
18 description : 'The Dump manager Dbus root'
19 )
20
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050021option('BMC_DUMP_OBJPATH', type : 'string',
22 value : '/xyz/openbmc_project/dump/bmc',
23 description : 'The BMC Dump manager Dbus object path'
24 )
25
26option('SYSTEM_DUMP_OBJPATH', type : 'string',
27 value : '/xyz/openbmc_project/dump/system',
28 description : 'The system Dump manager Dbus object path'
29 )
30
Ramesh Iyyarbb410df2020-08-03 03:13:04 -050031option('CORE_FILE_DIR', type : 'string',
32 value : '/var/lib/systemd/coredump',
33 description : 'Directory where core dumps are placed'
34 )
35
36option('OBJ_INTERNAL', type : 'string',
37 value : '/xyz/openbmc_project/dump/internal/manager',
38 description : 'Internal Dump manager Dbus object path'
39 )
40
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050041option('BMC_DUMP_OBJ_ENTRY', type : 'string',
42 value : '/xyz/openbmc_project/dump/bmc/entry',
43 description : 'The BMC dump entry DBus object path'
44 )
45
46option('SYSTEM_DUMP_OBJ_ENTRY', type : 'string',
47 value : '/xyz/openbmc_project/dump/system/entry',
48 description : 'The system dump entry DBus object path'
Ramesh Iyyarbb410df2020-08-03 03:13:04 -050049 )
50
51option('BMC_DUMP_PATH', type : 'string',
52 value : '/var/lib/phosphor-debug-collector/dumps/',
53 description : 'Directory where bmc dumps are placed'
54 )
55
56option('BMC_DUMP_MAX_SIZE', type : 'integer',
57 value : 200,
58 description : 'Maximum size of one bmc dump in kilo bytes'
59 )
60
61option('BMC_DUMP_MIN_SPACE_REQD', type : 'integer',
62 value : 20,
63 description : 'Minimum space required for one bmc dump in kilo bytes'
64 )
65
66option('BMC_DUMP_TOTAL_SIZE', type : 'integer',
67 value : 1024,
68 description : 'Total size of the dump in kilo bytes'
69 )
70
71option('ELOG_ID_PERSIST_PATH', type : 'string',
72 value : '/var/lib/phosphor-debug-collector/elogid',
73 description : 'Path of file for storing elog id\'s, which have associated dumps'
74 )
75
76option('CLASS_VERSION', type : 'integer',
77 value : 1,
78 description : 'Class version to register with Cereal'
79 )
80
81option('ERROR_MAP_YAML', type : 'string',
82 value : 'example_errors_watch.yaml',
83 description : 'YAML filepath containing error object paths'
84 )
85
86option('host-dump-offload-transport', type : 'string',
87 value : 'default',
88 description : 'To specify the host dump transport protocol')
Dhruvaraj Subhashchandran8b9b4692020-09-24 11:59:42 -050089
90option('openpower-dumps-extension', type: 'feature',
91 value : 'disabled',
92 description : 'Enable Open Power specific dumps'
93 )