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