-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmeson.options
49 lines (46 loc) · 1.43 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
option('tests', type: 'feature', description: 'Build tests.')
option('p9', type: 'feature', description: 'Enable support for POWER9')
option('openfsi', type: 'feature', description: 'Enable support for OpenFSI')
option('phal', type: 'feature', description: 'Enable support for PHAL')
option(
'DEVTREE_EXPORT_FILTER_FILE',
type: 'string',
value: '/usr/share/pdata/preserved_attrs_list',
description: 'Path to the phal devtree export filter file',
)
option(
'DEVTREE_EXP_FILE',
type: 'string',
value: '/var/lib/phal/exportdevtree',
description: 'Path to the devtree export copy file',
)
option(
'CEC_DEVTREE_RW_PATH',
type: 'string',
value: '/media/hostfw/running/DEVTREE',
description: 'Path to the devtree file r/w version',
)
option(
'CEC_DEVTREE_RO_BASE_PATH',
type: 'string',
value: '/media/hostfw/running-ro/',
description: 'Base path to the devtree file read only version',
)
option(
'CEC_INFODB_PATH',
type: 'string',
value: '/usr/share/pdata/attributes_info.db',
description: 'Path to the devtree attributes based database path',
)
option(
'DEVTREE_REINIT_ATTRS_LIST',
type: 'string',
value: '/usr/share/pdata/reinit_devtree_attrs_list',
description: 'Path to the phal devtree reinit attribute list file',
)
option(
'op_dump_obj_path',
type: 'string',
value: '/org/openpower/dump',
description: 'Object path requesting OpenPOWER dumps',
)