blob: c420a7d8162ad789e86d2118f68f3dfcaa19879e [file] [log] [blame]
George Liubddcf852021-09-08 08:46:22 +08001option(
2 'tests',
3 type : 'feature',
4 description : 'Build tests'
5)
6
7option(
George Liubddcf852021-09-08 08:46:22 +08008 'i2c-occ',
9 type : 'feature',
10 description : 'Enable I2C OCC support',
11 value: 'disabled'
12)
13
14option(
15 'read-occ-sensors',
16 type : 'feature',
17 description : 'Enable read occ sensors support',
18 value: 'disabled'
19)
20
21option(
22 'max-cpus',
23 type : 'integer',
24 min:0, max:255,
25 description : 'Maximum number of CPUs',
26 value: 2
27)
28
29option(
Eddie James3f710bd2021-10-20 13:40:52 -050030 'ps-derating-factor',
31 type : 'integer',
32 min:0, max:100,
33 description : 'Power supply derating factor',
34 value: 90
35)
36
37option(
George Liubddcf852021-09-08 08:46:22 +080038 'with-host-communication-protocol',
39 type : 'string',
40 description : 'To specify the host communication protocol'
41)
42
43option(
44 'power10-support',
45 type : 'feature',
46 description : 'Enable Power10 support',
47 value: 'disabled'
48)
49
50option(
51 'yamldir',
52 type : 'string',
53 description : 'The path to the yaml config files'
Patrick Williams9bec8af2023-09-07 14:02:27 -050054)