meson.build: Update LID_PERM_DIR and LID_TEMP_DIR
Point LID_PERM_DIR and LID_TEMP_DIR to the host-fw directory
where the host firmware files are stored in the BMC rootfs:
https://github.com/openbmc/openbmc/blob/master/meta-openpower/recipes-phosphor/flash/host-fw_git.bb
Both directories will point to the same destination until
support for dual versions is available.
This is to support a Read command from the Host, additional changes
might be needed later to support Write commands.
Tested: Booted a witherspoon-128 system.
Change-Id: I01ca9e45accdc8464a7b6a8a331bf16b3735eb72
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/meson.build b/meson.build
index 42e40af..1af27f6 100644
--- a/meson.build
+++ b/meson.build
@@ -19,8 +19,8 @@
conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr')
if get_option('oem-ibm').enabled()
conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
- conf_data.set_quoted('LID_PERM_DIR', '/var/lib/pldm/lid')
- conf_data.set_quoted('LID_TEMP_DIR', '/var/lib/pldm/lid/temp')
+ conf_data.set_quoted('LID_PERM_DIR', '/usr/share/host-fw')
+ conf_data.set_quoted('LID_TEMP_DIR', '/usr/share/host-fw')
add_global_arguments('-DOEM_IBM', language : 'c')
add_global_arguments('-DOEM_IBM', language : 'cpp')
endif