1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00

Merge pull request #12292 from benpicco/esp_wifi-workaround

cpu/esp32: disable thin archives if esp_wifi is used
This commit is contained in:
benpicco 2019-09-27 10:50:35 +02:00 committed by GitHub
commit 3e538c042d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,6 +42,9 @@ ifneq (,$(filter esp_wifi_any,$(USEMODULE)))
# crypto and hashes produce symbol conflicts with esp_idf_wpa_supplicant_crypto
DISABLE_MODULE += crypto
DISABLE_MODULE += hashes
# thin archives trigger a reboot loop - see #12258
ARFLAGS = rcs
endif
ifneq (,$(filter esp_idf_nvs_flash,$(USEMODULE)))