-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmeson.options
95 lines (91 loc) · 2.23 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
option(
'input-history-busname-root',
type: 'string',
value: 'org.open_power.powersupply',
description: 'The D-Bus busname root for the PS input history.',
)
option(
'input-history-sensor-root',
type: 'string',
value: '/org/open_power/sensors/aggregation/per_30s',
description: 'The D-Bus power sensors namespace root.',
)
option(
'input-history-sync-gpio',
type: 'string',
value: 'power-ffs-sync-history',
description: 'The GPIO line name for syncing input history data.',
)
option('tests', type: 'feature', description: 'Build tests.')
option(
'long-tests',
type: 'feature',
value: 'disabled',
description: 'Build long-running tests that are excluded from CI.',
)
# Supported power sequencers are: ucd90160, mihawk-cpld
option(
'power_sequencer',
type: 'string',
value: 'ucd90160',
description: 'The power sequencer',
)
option(
'device-access',
type: 'boolean',
value: true,
description: 'Enable UCD90160 hardware access.',
)
option(
'ibm-vpd',
type: 'boolean',
value: false,
description: 'Setup for IBM VPD collection for inventory.',
)
option(
'ucd90160-yaml',
type: 'string',
value: 'example/ucd90160.yaml',
description: 'The sequencer definition file to use.',
)
option(
'oe-sdk',
type: 'feature',
value: 'disabled',
description: 'Enable OE SDK',
)
option(
'cold-redundancy',
type: 'boolean',
description: 'Enable support for cold redundancy',
)
option(
'supply-monitor',
type: 'boolean',
description: 'Enable support for power supply monitoring',
)
option(
'supply-monitor-ng',
type: 'boolean',
description: 'Enable support for power supply monitoring',
)
option(
'regulators',
type: 'boolean',
description: 'Enable support for voltage regulator control',
)
option(
'sequencer-monitor',
type: 'boolean',
description: 'Enable support for power sequencer control',
)
option(
'power-control',
type: 'boolean',
description: 'Enable support for power sequencer control utilizing JSON configuration and supporting multiple systems in a single build image',
)
option(
'utils',
type: 'boolean',
description: 'Enable support for power supply utilities',
)