QSAP: use vendor path for default hostapd files.
This redefines macros to use "/data/vendor/wifi/hostapd/" path for read/write/update hostapd configuration parameters. Additionaly, it creates libqsap_headers which other modules can use to refer/include *.h files in this project. Change-Id: Ice64e5a56a69882b001b2f3bcd99ba0f91ffc8a2 CRs-Fixed: 2244795
This commit is contained in:
parent
c613ebbc1c
commit
9283d3e375
2 changed files with 11 additions and 6 deletions
|
@ -72,3 +72,8 @@ LOCAL_HEADER_LIBRARIES := libcutils_headers
|
|||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := libqsap_headers
|
||||
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
|
||||
LOCAL_PROPRIETARY_MODULE := true
|
||||
include $(BUILD_HEADER_LIBRARY)
|
||||
|
|
|
@ -89,11 +89,11 @@ enum error_val {
|
|||
#endif
|
||||
|
||||
/** Configuration file name for SAP+SAP*/
|
||||
#define CONFIG_FILE_2G "/data/vendor/wifi/hostapd_dual2g.conf"
|
||||
#define CONFIG_FILE_5G "/data/vendor/wifi/hostapd_dual5g.conf"
|
||||
#define CONFIG_FILE_2G "/data/vendor/wifi/hostapd/hostapd_dual2g.conf"
|
||||
#define CONFIG_FILE_5G "/data/vendor/wifi/hostapd/hostapd_dual5g.conf"
|
||||
|
||||
/** Configuration file name */
|
||||
#define CONFIG_FILE "/data/misc/wifi/hostapd.conf"
|
||||
#define CONFIG_FILE "/data/vendor/wifi/hostapd/hostapd.conf"
|
||||
|
||||
/** Default configuration file path */
|
||||
#define DEFAULT_CONFIG_FILE_PATH "/system/etc/hostapd/hostapd_default.conf"
|
||||
|
@ -102,19 +102,19 @@ enum error_val {
|
|||
#define DEFAULT_ACCEPT_LIST_FILE_PATH "/system/etc/hostapd/hostapd.accept"
|
||||
|
||||
/** Accept list file name */
|
||||
#define ACCEPT_LIST_FILE "/data/misc/wifi/hostapd.accept"
|
||||
#define ACCEPT_LIST_FILE "/data/vendor/wifi/hostapd/hostapd.accept"
|
||||
|
||||
/** Default Deny list file name */
|
||||
#define DEFAULT_DENY_LIST_FILE_PATH "/system/etc/hostapd/hostapd.deny"
|
||||
|
||||
/** Deny list file name */
|
||||
#define DENY_LIST_FILE "/data/misc/wifi/hostapd.deny"
|
||||
#define DENY_LIST_FILE "/data/vendor/wifi/hostapd/hostapd.deny"
|
||||
|
||||
/** Default Ini file */
|
||||
#define DEFAULT_INI_FILE "/persist/qcom/softap/qcom_cfg_default.ini"
|
||||
|
||||
/** SDK control interface path */
|
||||
#define SDK_CTRL_IF "/data/misc/wifi/softap_sdk_ctrl"
|
||||
#define SDK_CTRL_IF "/data/vendor/wifi/hostapd/ctrl/softap_sdk_ctrl"
|
||||
|
||||
/** Maximum length of the line in the configuration file */
|
||||
#define MAX_CONF_LINE_LEN (156)
|
||||
|
|
Loading…
Reference in a new issue