misc adjustment of esp32 component

This commit is contained in:
morris
2019-03-26 16:30:43 +08:00
committed by suda-morris
parent 30e3e26834
commit f5b03c9ea3
62 changed files with 146 additions and 302 deletions

View File

@@ -1,12 +0,0 @@
#!/bin/bash
echo '/*'
echo 'ESP32 ROM address table'
echo 'Generated for ROM with MD5sum:'
md5sum $1
echo '*/'
xtensa-esp108-elf-nm $1 | grep '[0-9a-f] [TBRD]' | while read adr ttp nm; do
if ! echo "$nm" | grep -q -e '^_bss' -e '_heap'; then
echo "PROVIDE ( $nm = 0x$adr );";
fi
done