blob: a948e468cd92f42d3eef675b0ed99ddde37f0e9a [file] [log] [blame]
George Liubddcf852021-09-08 08:46:22 +08001option(
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 'with-host-communication-protocol',
38 type : 'string',
39 description : 'To specify the host communication protocol'
40)
41
42option(
43 'power10-support',
44 type : 'feature',
45 description : 'Enable Power10 support',
46 value: 'disabled'
47)
48
49option(
50 'yamldir',
51 type : 'string',
52 description : 'The path to the yaml config files'
53)