blob: 0dd7c3ec0dff6471134d5c9f260de1ea2221d5e1 [file] [log] [blame]
William A. Kennington IIIe0538842021-06-11 02:01:58 -07001option('libonly', type: 'boolean', description: 'Build library only')
Patrick Williamsa5171972021-04-16 20:10:01 -05002option('tests', type: 'feature', description: 'Build tests')
Patrick Williamsd9f0d642021-04-21 15:43:21 -05003option(
4 'openpower-pel-extension',
5 type: 'feature',
6 description: 'Create PELs',
7 value: 'disabled'
8)
Patrick Williamsa5171972021-04-16 20:10:01 -05009
Patrick Williamsf06056b2021-04-16 13:38:55 -050010option('yamldir', type: 'string', description: 'Path to YAML')
11option(
12 'callout_yaml',
13 type: 'string',
14 value: 'callouts/callouts-example.yaml',
15 description: 'Path to Callout YAML',
16)
Patrick Williams0bb89f82021-04-16 16:30:04 -050017
18option(
19 'error_cap',
20 type: 'integer',
21 value: 200,
22 description: 'Max number of error enttries allowed for commit',
23)
24option(
25 'error_info_cap',
26 type: 'integer',
27 value: 10,
28 description: 'Cap on informational (and below) severity errors',
29)
Jayanth Othayothe8bdeea2021-06-03 03:01:16 -050030
31option(
32 'phal',
33 type: 'feature',
34 value: 'disabled',
35 description: 'Enable support for PHAL',
36)
Benjamin Fairaa5d03b2021-06-15 18:44:03 -070037
38option(
39 'rsyslog_server_conf',
40 type: 'string',
41 value: '/etc/rsyslog.d/server.conf',
42 description: 'Path to rsyslog server conf file',
43)