xref: /openbmc/openpower-occ-control/meson.options (revision 16a5adb204d261be727c67c4ea3b64a0965303e0)
1option('tests', type: 'feature', description: 'Build tests')
2
3option(
4    'max-cpus',
5    type: 'integer',
6    min: 0,
7    max: 255,
8    description: 'Maximum number of CPUs',
9    value: 2,
10)
11
12option(
13    'ps-derating-factor',
14    type: 'integer',
15    min: 0,
16    max: 100,
17    description: 'Power supply derating factor',
18    value: 90,
19)
20
21option(
22    'yamldir',
23    type: 'string',
24    description: 'The path to the yaml config files',
25)
26
27option(
28    'op_dump_obj_path',
29    type: 'string',
30    value: '/org/openpower/dump',
31    description: 'Object path requesting OpenPOWER dumps',
32)
33
34option(
35    'transport-implementation',
36    type: 'combo',
37    choices: ['mctp-demux', 'af-mctp'],
38    description: 'transport via af-mctp or mctp-demux',
39)
40
41option(
42    'phal-support',
43    type: 'feature',
44    description: 'Enable PHAL support',
45    value: 'disabled',
46)
47
48