-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeson.options
42 lines (42 loc) · 949 Bytes
/
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
option(
'snoop-device',
description: 'Linux module name of the snoop device.',
type: 'string',
)
option(
'post-code-bytes',
description: 'Post code byte size.',
type: 'integer',
value: 1,
)
option(
'host-instances',
description: 'obmc instances of the host',
type: 'string',
)
option(
'snoop',
type: 'feature',
description: 'Compile time flag to enable Ipmi snoop.',
value: 'disabled',
)
option(
'systemd-target',
description: 'Target for starting this service.',
type: 'string',
value: 'multi-user.target',
)
option(
'7seg', type: 'feature', description: 'Enable building 7seg POST daemon.',
)
option(
'tests', type: 'feature', description: 'Build tests.',
)
option(
'rate-limit',
description: 'Maximum number of POST codes to read from snoop device every'
+ 'second. Value of 0 disables rate limiting.',
type: 'integer',
min: 0,
value: 1000
)