kconfig: Add an option for skipping binary blobs

pull/928/head
Kedar Sovani 2017-08-10 10:46:36 +05:30
rodzic ba8cd58b08
commit 6405d6f874
2 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -560,6 +560,14 @@ config ESP32_XTAL_FREQ
endmenu
config NO_BLOBS
bool "No Binary Blobs"
depends on !BT_ENABLED
default n
help
If enabled, this disables the linking of binary libraries in the application build. Note
that after enabling this Wi-Fi/Bluetooth will not work.
menu Wi-Fi
config SW_COEXIST_ENABLE

Wyświetl plik

@ -7,7 +7,9 @@ CFLAGS += -DBOOTLOADER_BUILD
#endif
COMPONENT_SRCDIRS := . hwcrypto
LIBS := core rtc net80211 pp wpa smartconfig coexist wps wpa2 phy coexist
ifndef CONFIG_NO_BLOBS
LIBS := core rtc net80211 pp wpa smartconfig coexist wps wpa2 phy
endif
LINKER_SCRIPTS += esp32.common.ld esp32.rom.ld esp32.peripherals.ld