xref: /openbmc/entity-manager/meson.options (revision 8c4b1d999a13b27d6edc84cfaff1112a0cc07091)
1option('tests', type: 'feature', description: 'Build tests.')
2option(
3    'fru-device',
4    type: 'boolean',
5    description: 'Build fru-device VPD parser.',
6)
7option(
8    'fru-device-resizefru',
9    value: false,
10    type: 'boolean',
11    description: 'Allow FruDevice to resize FRU areas.',
12)
13option(
14    'fru-device-16bitdetectmode',
15    type: 'combo',
16    choices: ['MODE_1', 'MODE_2'],
17    value: 'MODE_1',
18    description: 'Different modes to detect 16-bit address EEPROM devices. MODE_1 is current and default mode.',
19)
20option(
21    'devicetree-vpd',
22    type: 'boolean',
23    description: 'Build device-tree VPD parser',
24)
25option(
26    'validate-json',
27    type: 'boolean',
28    value: true,
29    description: 'Run JSON schema validation during the build.',
30)
31option(
32    'gpio-presence',
33    type: 'boolean',
34    value: true,
35    description: 'Build gpio presence daemon',
36)
37