-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmeson.options
77 lines (66 loc) · 1.36 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
option(
'tests',
type : 'feature',
description : 'Build tests'
)
option(
'i2c-occ',
type : 'feature',
description : 'Enable I2C OCC support',
value: 'disabled'
)
option(
'read-occ-sensors',
type : 'feature',
description : 'Enable read occ sensors support',
value: 'enabled'
)
option(
'max-cpus',
type : 'integer',
min:0, max:255,
description : 'Maximum number of CPUs',
value: 2
)
option(
'ps-derating-factor',
type : 'integer',
min:0, max:100,
description : 'Power supply derating factor',
value: 90
)
option(
'with-host-communication-protocol',
type : 'string',
description : 'To specify the host communication protocol',
value: 'pldm'
)
option(
'power10-support',
type : 'feature',
description : 'Enable Power10 support',
value: 'enabled'
)
option(
'yamldir',
type : 'string',
description : 'The path to the yaml config files'
)
option(
'op_dump_obj_path',
type: 'string',
value: '/org/openpower/dump',
description : 'Object path requesting OpenPOWER dumps'
)
option(
'transport-implementation',
type: 'combo',
choices: ['mctp-demux', 'af-mctp'],
description: 'transport via af-mctp or mctp-demux'
)
option(
'phal-support',
type : 'feature',
description : 'Enable PHAL support',
value: 'disabled'
)