blob: 7a969ccc95e928b1c63d33f89af25d9e6b939b56 [file] [log] [blame]
Patrick Williamsb3da14b2025-03-03 11:08:34 -05001option(
2 'BUSNAME',
3 type: 'string',
4 value: 'com.ibm.VPD.Manager',
5 description: 'BUS NAME FOR THE SERVICE',
6)
7option(
8 'OBJPATH',
9 type: 'string',
10 value: '/com/ibm/VPD/Manager',
11 description: 'OBJECT PATH FOR THE SERVICE',
12)
13option(
14 'IFACE',
15 type: 'string',
16 value: 'com.ibm.VPD.Manager',
17 description: 'INTERFACE NAME',
18)
19option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
20option(
21 'ipz_ecc_check',
22 type: 'feature',
23 value: 'disabled',
24 description: 'enable when ECC check used in IPZ parsering, used for Gtest cases.',
25)
26option(
27 'BAD_VPD_DIR',
28 type: 'string',
29 value: '/tmp/bad-vpd/',
30 description: 'Directory which contains the bad vpd file - which needs to be included in bmc dump.',
31)
32option(
33 'INVENTORY_JSON_DEFAULT',
34 type: 'string',
35 value: '/usr/share/vpd/vpd_inventory.json',
36 description: 'JSON file that defines inventory blueprint. The default path before system VPD service sets up the symlink.',
37)
38option(
39 'INVENTORY_JSON_SYM_LINK',
40 type: 'string',
41 value: '/var/lib/vpd/vpd_inventory.json',
42 description: 'Symbolic link to vpd inventory json.',
43)
44option(
45 'JSON_ABSOLUTE_PATH_PREFIX',
46 type: 'string',
47 value: '/usr/share/vpd/',
48 description: 'Path that has all system JSONs.',
49)
50option(
51 'SYSTEM_VPD_FILE_PATH',
52 type: 'string',
53 value: '/sys/bus/i2c/drivers/at24/8-0050/eeprom',
54 description: 'EEPROM path of system VPD.',
55)
56option(
57 'VPD_SYMLIMK_PATH',
58 type: 'string',
59 value: '/var/lib/vpd',
60 description: 'Symlink folder for VPD invnetory JSONs',
61)
62option(
63 'PIM_PATH_PREFIX',
64 type: 'string',
65 value: '/xyz/openbmc_project/inventory',
66 description: 'Prefix for PIM inventory paths.',
67)
68option(
69 'ibm_system',
70 type: 'feature',
71 value: 'enabled',
72 description: 'Enable code specific to IBM systems.',
73)