blob: 75d97a8503df51929278fbaed3f2a668c7af6c74 [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
21option('CORE_FILE_DIR', type : 'string',
22 value : '/var/lib/systemd/coredump',
23 description : 'Directory where core dumps are placed'
24 )
25
26option('OBJ_INTERNAL', type : 'string',
27 value : '/xyz/openbmc_project/dump/internal/manager',
28 description : 'Internal Dump manager Dbus object path'
29 )
30
31option('OBJ_ENTRY', type : 'string',
32 value : '/xyz/openbmc_project/dump/entry',
33 description : 'The dump entry DBus object path'
34 )
35
36option('BMC_DUMP_PATH', type : 'string',
37 value : '/var/lib/phosphor-debug-collector/dumps/',
38 description : 'Directory where bmc dumps are placed'
39 )
40
41option('BMC_DUMP_MAX_SIZE', type : 'integer',
42 value : 200,
43 description : 'Maximum size of one bmc dump in kilo bytes'
44 )
45
46option('BMC_DUMP_MIN_SPACE_REQD', type : 'integer',
47 value : 20,
48 description : 'Minimum space required for one bmc dump in kilo bytes'
49 )
50
51option('BMC_DUMP_TOTAL_SIZE', type : 'integer',
52 value : 1024,
53 description : 'Total size of the dump in kilo bytes'
54 )
55
56option('ELOG_ID_PERSIST_PATH', type : 'string',
57 value : '/var/lib/phosphor-debug-collector/elogid',
58 description : 'Path of file for storing elog id\'s, which have associated dumps'
59 )
60
61option('CLASS_VERSION', type : 'integer',
62 value : 1,
63 description : 'Class version to register with Cereal'
64 )
65
66option('ERROR_MAP_YAML', type : 'string',
67 value : 'example_errors_watch.yaml',
68 description : 'YAML filepath containing error object paths'
69 )
70
71option('host-dump-offload-transport', type : 'string',
72 value : 'default',
73 description : 'To specify the host dump transport protocol')