20 lines
605 B
Bash
Executable file
20 lines
605 B
Bash
Executable file
#!/bin/bash
|
|
source ./tools/config.sh
|
|
|
|
if [[ "$AR_OS" == "macos" ]]; then
|
|
ESP32_ARDUINO="$HOME/Documents/Arduino/hardware/espressif/esp32"
|
|
else
|
|
ESP32_ARDUINO="$HOME/Arduino/hardware/espressif/esp32"
|
|
fi
|
|
|
|
if ! [ -d "$ESP32_ARDUINO" ]; then
|
|
echo "ERROR: Target arduino folder does not exist!"
|
|
exit 1
|
|
fi
|
|
|
|
rm -rf $ESP32_ARDUINO/tools/sdk
|
|
cp -Rf $AR_SDK $ESP32_ARDUINO/tools/sdk
|
|
cp -f $AR_ESPTOOL_PY $ESP32_ARDUINO/tools/esptool.py
|
|
cp -f $AR_GEN_PART_PY $ESP32_ARDUINO/tools/gen_esp32part.py
|
|
cp -f $AR_PLATFORMIO_PY $ESP32_ARDUINO/tools/platformio-build.py
|
|
cp -f $AR_PLATFORM_TXT $ESP32_ARDUINO/platform.txt
|