xref: /openbmc/phosphor-host-postd/meson.options (revision 13d9ae334815b95a5009f14b45b9342eb658b6c2)
1option(
2    'snoop-device',
3    description: 'Linux module name of the snoop device.',
4    type: 'string',
5)
6option(
7    'post-code-bytes',
8    description: 'Post code byte size.',
9    type: 'integer',
10    value: 1,
11)
12option(
13    'host-instances',
14    description: 'obmc instances of the host',
15    type: 'string',
16)
17option(
18    'snoop',
19    type: 'feature',
20    description: 'Compile time flag to enable Ipmi snoop.',
21    value: 'disabled',
22)
23option(
24    'systemd-target',
25    description: 'Target for starting this service.',
26    type: 'string',
27    value: 'multi-user.target',
28)
29option('7seg', type: 'feature', description: 'Enable building 7seg POST daemon.')
30option('tests', type: 'feature', description: 'Build tests.')
31option(
32    'rate-limit',
33    description: 'Maximum number of POST codes to read from snoop device every'
34    + 'second. Value of 0 disables rate limiting.',
35    type: 'integer',
36    min: 0,
37    value: 1000,
38)
39