Moving location sockets from /data to /dev

Keeping sockets in /data/vendor/location prevents
unmounting of /data partition after build load.

CRs-Fixed: 2174503
Change-Id: Ib1b9f07bb25368ac7d1a32536e58c52dd2b2ad4e
This commit is contained in:
Saurabh Srivastava 2018-01-19 17:32:08 +05:30 committed by Dante Russo
parent ab95d2dc2e
commit 1d7904e9a6

View file

@ -1314,8 +1314,8 @@ typedef void (*LocAgpsOpenResultCb)(bool isSuccess, AGpsExtType agpsType, const
typedef void (*LocAgpsCloseResultCb)(bool isSuccess, AGpsExtType agpsType, void* userDataPtr); typedef void (*LocAgpsCloseResultCb)(bool isSuccess, AGpsExtType agpsType, void* userDataPtr);
/* Shared resources of LocIpc */ /* Shared resources of LocIpc */
#define LOC_IPC_HAL "/data/vendor/location/socket_hal" #define LOC_IPC_HAL "/dev/socket/location/socket_hal"
#define LOC_IPC_XTRA "/data/vendor/location/xtra/socket_xtra" #define LOC_IPC_XTRA "/dev/socket/location/xtra/socket_xtra"
#ifdef __cplusplus #ifdef __cplusplus
} }