Skip to content

Commit

Permalink
Default configuration files added for apq8084
Browse files Browse the repository at this point in the history
default supplicant configuration files are added
so that files will be copied to target automatically
upon flashing the image.

Change-Id: Ib3d92cc6cabe1730217ee2c2ba7bdf637b592024
CRs-fixed: 548918
  • Loading branch information
Ganesh Babu Kumaravel committed Sep 24, 2013
1 parent e7c76ca commit 24b0551
Show file tree
Hide file tree
Showing 5 changed files with 1,912 additions and 0 deletions.
34 changes: 34 additions & 0 deletions AndroidBoard.mk
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,40 @@ LOCAL_MODULE_CLASS := ETC
LOCAL_SRC_FILES := $(LOCAL_MODULE)
include $(BUILD_PREBUILT)

ifeq ($(strip $(BOARD_HAS_QCOM_WLAN)),true)
include $(CLEAR_VARS)
LOCAL_MODULE := wpa_supplicant_wcn.conf
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := ETC
LOCAL_SRC_FILES := $(LOCAL_MODULE)
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/wifi
include $(BUILD_PREBUILT)

include $(CLEAR_VARS)
LOCAL_MODULE := hostapd_default.conf
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/hostapd
LOCAL_SRC_FILES := hostapd.conf
include $(BUILD_PREBUILT)

include $(CLEAR_VARS)
LOCAL_MODULE := hostapd.accept
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/hostapd
LOCAL_SRC_FILES := hostapd.accept
include $(BUILD_PREBUILT)

include $(CLEAR_VARS)
LOCAL_MODULE := hostapd.deny
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/hostapd
LOCAL_SRC_FILES := hostapd.deny
include $(BUILD_PREBUILT)

endif
#----------------------------------------------------------------------
# extra images
#----------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions hostapd.accept
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# List of MAC addresses that are allowed to authenticate (IEEE 802.11)
# with the AP. Optional VLAN ID can be assigned for clients based on the
# MAC address if dynamic VLANs (hostapd.conf dynamic_vlan option) are used.
Loading

0 comments on commit 24b0551

Please sign in to comment.