1option(
2    'tests',
3    type : 'feature',
4    description : 'Build tests'
5)
6
7option(
8    'install-error-yaml',
9    type : 'feature',
10    description : 'Enable installing error yaml file',
11    value: 'disabled'
12)
13
14option(
15    'i2c-occ',
16    type : 'feature',
17    description : 'Enable I2C OCC support',
18    value: 'disabled'
19)
20
21option(
22    'read-occ-sensors',
23    type : 'feature',
24    description : 'Enable read occ sensors support',
25    value: 'disabled'
26)
27
28option(
29    'max-cpus',
30    type : 'integer',
31    min:0, max:255,
32    description : 'Maximum number of CPUs',
33    value: 2
34)
35
36option(
37    'ps-derating-factor',
38    type : 'integer',
39    min:0, max:100,
40    description : 'Power supply derating factor',
41    value: 90
42)
43
44option(
45    'with-host-communication-protocol',
46    type : 'string',
47    description : 'To specify the host communication protocol'
48)
49
50option(
51    'power10-support',
52    type : 'feature',
53    description : 'Enable Power10 support',
54    value: 'disabled'
55)
56
57option(
58    'yamldir',
59    type : 'string',
60    description : 'The path to the yaml config files'
61)