-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathmeson.options
253 lines (233 loc) · 6.68 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
option('tests', type: 'feature', description: 'Build tests')
option(
'boot-flag-safe-mode-support',
type: 'feature',
description: 'Add option to enable/disable safe mode in boot flags',
)
option(
'i2c-whitelist-check',
type: 'feature',
description: 'Add option to enable/disable i2c master write read command white list checking',
)
# SoftPowerOff
option('softoff', type: 'feature', description: 'Builds soft power off')
option(
'softoff-busname',
type: 'string',
value: 'xyz.openbmc_project.Ipmi.Internal.SoftPowerOff',
description: 'The Dbus busname to own for SoftPowerOff',
)
option(
'softoff-objpath',
type: 'string',
value: '/xyz/openbmc_project/ipmi/internal/soft_power_off',
description: 'The SoftPowerOff Dbus root',
)
option(
'ipmi-sms-atn-ack-timeout-secs',
type: 'integer',
value: 3,
description: 'Timeout for host to ack and query SMS_ATN from BMC',
)
option(
'ipmi-host-shutdown-complete-timeout-secs',
type: 'integer',
value: 2700,
description: 'Wait time for host to shutdown',
)
# Indicates an in-band power off or reboot request from the host
# This file is used to ensure the soft off service does not run for host
# initiated shutdown or reboot requests
option(
'host-inband-request-dir',
type: 'string',
value: '/run/openbmc/',
description: 'Directory to store host initiated shutdown file',
)
option(
'host-inband-request-file',
type: 'string',
value: 'host@%u-request',
description: 'File to create if host has initiated shutdown or reboot',
)
# Config Variables
option(
'board-sensor',
type: 'string',
value: '/xyz/openbmc_project/inventory/system/chassis/motherboard',
description: 'The inventory path to the motherboard fault sensor',
)
option(
'system-sensor',
type: 'string',
value: '/xyz/openbmc_project/inventory/system',
description: 'The inventory path to the system event sensor',
)
# Control Host Interfaces
option(
'control-host-busname',
type: 'string',
value: 'xyz.openbmc_project.Control.Host',
description: 'The Control Host Dbus busname to own',
)
option(
'control-host-obj-mgr',
type: 'string',
value: '/xyz/openbmc_project/control',
description: 'The Control Host D-Bus Object Manager',
)
option(
'host-name',
type: 'string',
value: 'host',
description: 'The Control Host D-Bus Object Manager',
)
# Power reading sensor configuration file
option(
'power-reading-sensor',
type: 'string',
value: '/usr/share/ipmi-providers/power_reading.json',
description: 'Power reading sensor configuration file',
)
option(
'host-ipmi-lib-path',
type: 'string',
value: '/usr/lib/ipmid-providers/',
description: 'The file path to search for libraries',
)
# When a sensor read fails, hwmon will update the OperationalState interface's Functional property.
# This will mark the sensor as not functional and we will skip reading from that sensor.
option(
'update-functional-on-fail',
type: 'feature',
value: 'disabled',
description: 'Check functional property to skip reading from faulty sensors',
)
# Features
# When libuserlayer is disabled, libuserlayer won't be included in the build.
option(
'libuserlayer',
type: 'feature',
description: 'Option to exclue exclude libuserlayer',
)
# When transport-oem is enabled, the transporthandler_oem.cpp contents
# are compiled and added to the project. The transporthandler_oem.cpp file is
# copied from your own customization layer in the
# phosphor-ipmi-host_%.bbappend file. It is not necessary to create this file
# unless OEM Parameter extensions are required.
option(
'transport-oem',
type: 'feature',
value: 'disabled',
description: 'Enable transporthandler_oem contents',
)
# IPMI whitelist mechanism is not needed by everyone; offer a way to disable it
option(
'ipmi-whitelist',
type: 'feature',
description: 'Enable/disable IPMI whitelist filtering',
)
option(
'whitelist-conf',
type: 'string',
value: 'host-ipmid-whitelist.conf',
description: 'Paths to IPMI whitelisted commands conf files',
)
# Entity Manager Decorators
option(
'entity-manager-decorators',
type: 'feature',
value: 'enabled',
description: 'The Entity Manager Decorators flag is enabled by default; offer a way to disable it',
)
# Dynamic Sensor Stack
option(
'dynamic-sensors',
type: 'feature',
value: 'disabled',
description: 'Dynamic sensors stack is enabled by default; offer a way to disable it',
)
option(
'dynamic-sensors-write',
type: 'feature',
value: 'disabled',
description: 'Dynamic sensors stack is enabled by default; offer a way to disable it',
)
option(
'hybrid-sensors',
type: 'feature',
value: 'disabled',
description: 'Hybrid sensors stack is disabled by default; offer a way to enable it',
)
option(
'sensors-oem',
type: 'feature',
value: 'disabled',
description: 'OEM sensor SDR parsing is disabled by default; offer a way to enable it',
)
# Sensor Cache
option(
'sensors-cache',
type: 'feature',
value: 'disabled',
description: 'Sensor cache stack is disabled by default; offer a way to enable it',
)
# Short Sensor Names for IPMI
option(
'shortname-remove-suffix',
type: 'feature',
value: 'enabled',
description: 'shortname-remove-suffix is enabled by default',
)
option(
'shortname-replace-words',
type: 'feature',
value: 'disabled',
description: 'shortname-replace-words is disabled by default',
)
# Generate configuration from Yaml
option('sensor-yaml-gen', type: 'string', value: 'sensor-example.yaml')
option(
'invsensor-yaml-gen',
type: 'string',
value: 'inventory-sensor-example.yaml',
)
option('fru-yaml-gen', type: 'string', value: 'fru-read-example.yaml')
# Software Version
option(
'get-dbus-active-software',
type: 'feature',
description: 'Use the getActiveSoftwareVersionInfo for the BMC version and dev_id.json as backup',
)
option(
'fw-ver-regex',
type: 'string',
value: '(\\\\d+)\\\\.(\\\\d+)',
description: 'Regular expressions for parsing firmware revision',
)
option(
'matches-map',
type: 'array',
value: ['1', '2', '0', '0', '0', '0'],
description: 'An array of integers',
)
# libipmi20.so library
option(
'dynamic-storages-only',
type: 'feature',
value: 'disabled',
description: 'Request to compile storage commands in the libipmi20 library',
)
# open-power specific functionality.
option(
'open-power',
type: 'feature',
description: 'Support open-power specific functions',
)
# HW transport
option(
'transport-implementation',
type: 'combo',
choices: ['null', 'serial'],
description: 'transport'
)