forked from openbmc/openpower-vpd-parser
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmeson.options
67 lines (67 loc) · 1.69 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
option(
'BUSNAME',
type: 'string',
value: 'com.ibm.VPD.Manager',
description: 'BUS NAME FOR THE SERVICE',
)
option(
'OBJPATH',
type: 'string',
value: '/com/ibm/VPD/Manager',
description: 'OBJECT PATH FOR THE SERVICE',
)
option(
'IFACE',
type: 'string',
value: 'com.ibm.VPD.Manager',
description: 'INTERFACE NAME',
)
option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
option(
'ipz_ecc_check',
type: 'feature',
value: 'disabled',
description: 'enable when ECC check used in IPZ parsering, used for Gtest cases.',
)
option(
'INVENTORY_JSON_DEFAULT',
type: 'string',
value: '/usr/share/vpd/vpd_inventory.json',
description: 'JSON file that defines inventory blueprint. The default path before system VPD service sets up the symlink.',
)
option(
'INVENTORY_JSON_SYM_LINK',
type: 'string',
value: '/var/lib/vpd/vpd_inventory.json',
description: 'Symbolic link to vpd inventory json.',
)
option(
'JSON_ABSOLUTE_PATH_PREFIX',
type: 'string',
value: '/usr/share/vpd/',
description: 'Path that has all system JSONs.',
)
option(
'SYSTEM_VPD_FILE_PATH',
type: 'string',
value: '/sys/bus/i2c/drivers/at24/8-0050/eeprom',
description: 'EEPROM path of system VPD.',
)
option(
'VPD_SYMLIMK_PATH',
type: 'string',
value: '/var/lib/vpd',
description: 'Symlink folder for VPD invnetory JSONs',
)
option(
'PIM_PATH_PREFIX',
type: 'string',
value: '/xyz/openbmc_project/inventory',
description: 'Prefix for PIM inventory paths.',
)
option(
'ibm_system',
type: 'feature',
value: 'enabled',
description: 'Enable code specific to IBM systems.',
)