blob: 65c1f979ae417c73d01968954d64254b2c6fe622 [file] [log] [blame]
Patrick Williams37304f02025-02-01 08:38:32 -05001option('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)