mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-29 13:17:58 +08:00
feat(lib): remove wpa2 and wps lib
This commit is contained in:
@ -67,7 +67,7 @@ else()
|
|||||||
target_link_libraries(${COMPONENT_LIB} PUBLIC "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib" "-lstdc++")
|
target_link_libraries(${COMPONENT_LIB} PUBLIC "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib" "-lstdc++")
|
||||||
target_compile_definitions(${COMPONENT_LIB} PUBLIC -DUSING_IBUS_FASTER_GET)
|
target_compile_definitions(${COMPONENT_LIB} PUBLIC -DUSING_IBUS_FASTER_GET)
|
||||||
if(NOT CONFIG_NO_BLOBS)
|
if(NOT CONFIG_NO_BLOBS)
|
||||||
set(blobs "gcc" "hal" "core" "net80211" "phy" "rtc" "clk" "pp" "smartconfig" "ssc" "espnow" "wps" "wpa2")
|
set(blobs "gcc" "hal" "core" "net80211" "phy" "rtc" "clk" "pp" "smartconfig" "ssc" "espnow")
|
||||||
foreach(blob ${blobs})
|
foreach(blob ${blobs})
|
||||||
add_library(${blob} STATIC IMPORTED)
|
add_library(${blob} STATIC IMPORTED)
|
||||||
set_property(TARGET ${blob} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/lib/lib${blob}.a)
|
set_property(TARGET ${blob} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/lib/lib${blob}.a)
|
||||||
|
@ -13,10 +13,10 @@ LIBS ?=
|
|||||||
ifndef CONFIG_NO_BLOBS
|
ifndef CONFIG_NO_BLOBS
|
||||||
ifndef CONFIG_ESP8266_WIFI_DEBUG_LOG_ENABLE
|
ifndef CONFIG_ESP8266_WIFI_DEBUG_LOG_ENABLE
|
||||||
LIBS += gcc hal core net80211 \
|
LIBS += gcc hal core net80211 \
|
||||||
phy rtc clk pp smartconfig ssc espnow wps wpa2
|
phy rtc clk pp smartconfig ssc espnow
|
||||||
else
|
else
|
||||||
LIBS += gcc hal core_dbg net80211_dbg \
|
LIBS += gcc hal core_dbg net80211_dbg \
|
||||||
phy rtc clk pp_dbg smartconfig ssc espnow_dbg wps_dbg wpa2_dbg
|
phy rtc clk pp_dbg smartconfig ssc espnow_dbg
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -56,4 +56,4 @@ esp8266_out.ld: $(COMPONENT_PATH)/ld/esp8266.ld ../include/sdkconfig.h
|
|||||||
|
|
||||||
COMPONENT_EXTRA_CLEAN := esp8266_out.ld $(COMPONENT_BUILD_DIR)/esp8266.project.ld
|
COMPONENT_EXTRA_CLEAN := esp8266_out.ld $(COMPONENT_BUILD_DIR)/esp8266.project.ld
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
Reference in New Issue
Block a user