forked from openbmc/phosphor-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.options
92 lines (81 loc) · 2.05 KB
/
meson.options
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
option('libonly', type: 'boolean', description: 'Build library only')
option('tests', type: 'feature', description: 'Build tests')
option(
'openpower-pel-extension',
type: 'feature',
description: 'Create PELs',
value: 'disabled'
)
option(
'nvbmc-logging-extension',
type: 'feature',
description: 'Enable NVBMC Device Event Log Extensions for BootEntryID support',
value: 'disabled'
)
option('yamldir', type: 'string', description: 'Path to YAML')
option(
'callout_yaml',
type: 'string',
value: 'callouts/callouts-example.yaml',
description: 'Path to Callout YAML',
)
option(
'error_cap',
type: 'integer',
value: 200,
description: 'Max number of error enttries allowed for commit',
)
option(
'error_info_cap',
type: 'integer',
value: 10,
description: 'Cap on informational (and below) severity errors',
)
option(
'phal',
type: 'feature',
value: 'disabled',
description: 'Enable support for PHAL',
)
option(
'rsyslog_server_conf',
type: 'string',
value: '/etc/rsyslog.d/server.conf',
description: 'Path to rsyslog server conf file',
)
option(
'rsyslog_fwd_actions_conf_dir_path',
type: 'string',
value: '/etc/rsyslog.d',
description: 'Path to rsyslog fwd actions conf files',
)
option(
'rw_config_file_path',
type: 'string',
value: '/etc/phosphor-logging/conf/rw-config.json',
description: 'Path to read-write phosphor-logging config file',
)
option(
'log_purge_policy_default',
type: 'boolean',
value: false,
description: 'Default value of log purge policy enabled state',
)
option(
'enable_rsyslog_fwd_actions_conf',
type: 'boolean',
value: false,
description: 'Enable the creation of fwd actions conf files by phosphor-rsyslog-config'
)
option(
'enable_log_streaming',
type: 'boolean',
value: false,
description: 'Enable log socket'
)
option(
'log_streamer_socket_path',
type: 'string',
value: '/run/rsyslog/log_streamer_console_input',
description: 'Path to rsyslog socket',
)