esp_phy: support esp32h2beta2 phy build

This commit is contained in:
zhangwenxu
2022-04-19 17:02:13 +08:00
committed by BOT
parent 8377a3fff1
commit 9440430db2
4 changed files with 13 additions and 255 deletions

View File

@@ -47,7 +47,8 @@ popd > /dev/null
pushd ${IDF_PATH}/components/esp_phy/lib > /dev/null
phy_targets=$(find . -type d -name 'esp*' -exec basename {} \; | sort)
for target in ${phy_targets}; do
for library in ${target}/*.a; do
libraries=$(find ${target} -name '*.a')
for library in ${libraries}; do
check_lib_symbols ${library} ${illegal_symbols}
done
done