Hi all,
Anyone can tell me how to compile wpa_supplicant in cupcake-1.5?
I followed below steps for wpa_supplicant:
--> In ~/mydroid/external/wpa_supplicant/Android.mk add below lines
ifeq ($(HAVE_CUSTOM_WIFI_DRIVER_0),true)
WPA_BUILD_SUPPLICANT := true
CONFIG_DRIVER_CUSTOM=y
endif
ifeq ($(HAVE_CUSTOM_WIFI_DRIVER_1),true)
WPA_BUILD_SUPPLICANT := true
CONFIG_DRIVER_CUSTOM=y
endif
ifeq ($(HAVE_CUSTOM_WIFI_DRIVER_2),true)
WPA_BUILD_SUPPLICANT := true
CONFIG_DRIVER_CUSTOM=y
endif
ifeq ($(HAVE_WEXT_WIFI_DRIVER),true)
WPA_BUILD_SUPPLICANT := true
CONFIG_DRIVER_WEXT=y
endif
--> In ~/mydroid/build/target/board/generic/BoardConfig.mk add below lines
HAVE_CUSTOM_WIFI_DRIVER_2 := true
HAVE_WEXT_WIFI_DRIVER := true
USE_PRODUCT_WIFI_CONF := true
but below error message return
/*******************************************************/
make: execvp: /bin/bash: Argument list too long
target thumb C: wpa_supplicant <= external/wpa_supplicant/driver_wext.c
make: *** No rule to make target `out/target/product/generic/obj/STATIC_LIBRARIES/libCustomWifi_intermediates/libCustomWifi.a', needed by `out/target/product/generic/obj/EXECUTABLES/wpa_supplicant_intermediates/LINKED/wpa_supplicant'. Stop.
/*******************************************************/
Thanks & Regards
Deepak