-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathmeson.options
More file actions
55 lines (55 loc) · 1.5 KB
/
meson.options
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
option('tests', type: 'feature', description: 'Build tests.')
option(
'fru-device',
type: 'boolean',
description: 'Build fru-device VPD parser.',
)
option(
'fru-device-update-property',
type: 'combo',
choices: ['asset_only', 'all'],
value: 'all',
description: 'Enable updating FRU properties via D-BUS. Choose "asset_only" to update only asset properties, or "all" to update all properties.',
)
option(
'fru-device-resizefru',
value: true,
type: 'boolean',
description: 'Allow FruDevice to resize FRU areas.',
)
option(
'fru-device-16bitdetectmode',
type: 'combo',
choices: ['MODE_1', 'MODE_2'],
value: 'MODE_1',
description: 'Different modes to detect 16-bit address EEPROM devices. MODE_1 is current and default mode.',
)
option(
'devicetree-vpd',
type: 'boolean',
description: 'Build device-tree VPD parser',
)
option(
'validate-json',
type: 'boolean',
value: true,
description: 'Run JSON schema validation during the build.',
)
option(
'runtime-validate-json',
type: 'boolean',
value: false,
description: 'Run JSON schema validation at runtime.',
)
option(
'gpio-presence',
type: 'boolean',
value: true,
description: 'Build gpio presence daemon',
)
option(
'new-device-detection',
type: 'boolean',
value: true,
description: 'Cache the current configuration to support new-device detection. This option can be set to false for development, which will force re-parsing of configuration.',
)