mirror of
https://github.com/espressif/esp32-wifi-lib.git
synced 2025-07-03 08:47:27 +08:00

Backport following fixes to v3.2 (9648c6a0): 1. Add support for STA HT2040 coexist management 2. Add support for WPA2 improvements 3. Add support for WiFi signal test 4. Disallow HT rate when unicast/mcast cipher is TKIP/WEP 5. Fix the bug that WPS fails when AP is encrypted
16 lines
1.0 KiB
Bash
Executable File
16 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=phy_printf libphy.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=rtc_printf librtc.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=wps_printf libwps.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=wpa_printf libwpa.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=wpa2_printf libwpa2.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=wpa2_printf libwpa2.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=sc_printf libsmartconfig.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=pp_printf libpp.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=net80211_printf libnet80211.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=core_printf libcore.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=core_printf libcore.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=coexist_printf libcoexist.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=coexist_printf libcoexist.a
|
|
xtensa-esp32-elf-objcopy --redefine-sym printf=coexist_printf libcoexist.a
|