wifi: update libs (1fd2049)

1) update WiFi libs for both chips.
2) update fix_printf script.
This commit is contained in:
chenyudong
2020-02-13 16:44:14 +08:00
parent 648e97cfaa
commit 5feec6a032
3 changed files with 6 additions and 6 deletions

Binary file not shown.

Binary file not shown.

View File

@ -2,17 +2,17 @@
for dir in esp32 esp32s2beta; do
if [ -d "$dir" ]; then
cd $dir
git status libphy.a | grep modified >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $dir/libphy.a fixed
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=phy_printf libphy.a
git status libphy.a | grep modified >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $dir/libphy.a fixed
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=phy_printf libphy.a
fi
git status librtc.a | grep modified >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $dir/librtc.a fixed
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=rtc_printf librtc.a
fi
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=rtc_printf librtc.a
fi
git status libsmartconfig.a | grep modified >/dev/null 2>&1
if [ $? -eq 0 ]; then