2016-08-17 15:08:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2017-03-21 03:17:19 +00:00
|
|
|
# Setup script to configure an MSYS2 environment for ESP-IDF.
|
|
|
|
#
|
|
|
|
# Use of this script is optional, there is also a prebuilt MSYS2 environment available
|
|
|
|
# which can be downloaded and used as-is.
|
|
|
|
#
|
2018-06-18 07:07:16 +00:00
|
|
|
# See https://docs.espressif.com/projects/esp-idf/en/latest/get-started/windows-setup.html for full details.
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
if [ "$OSTYPE" != "msys" ]; then
|
|
|
|
echo "This setup script expects to be run from an MSYS2 environment on Windows."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if ! [ -x /bin/pacman ]; then
|
|
|
|
echo "This setup script expects to use the pacman package manager from MSYS2."
|
|
|
|
exit 1
|
|
|
|
fi
|
2017-03-21 03:17:19 +00:00
|
|
|
if [ "$MSYSTEM" != "MINGW32" ]; then
|
|
|
|
echo "This setup script must be started from the 'MSYS2 MinGW 32-bit' start menu shortcut"
|
|
|
|
echo "OR by running `cygpath -w /mingw32.exe`"
|
|
|
|
echo "(The current MSYSTEM mode is $MSYSTEM but it expects it to be MINGW32)"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
# if update-core still exists, run it to get the latest core MSYS2 system
|
|
|
|
# (which no longer needs or includes update-core!)
|
|
|
|
#
|
|
|
|
# If this step runs, it will require a full restart of MSYS2 before it
|
|
|
|
# can continue.
|
|
|
|
[ -x /usr/bin/update-core ] && /usr/bin/update-core
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2017-03-21 03:17:19 +00:00
|
|
|
pacman --noconfirm -Syu # This step may require the terminal to be closed and restarted
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2017-03-21 03:17:19 +00:00
|
|
|
pacman --noconfirm -S --needed gettext-devel gcc git make ncurses-devel flex bison gperf vim mingw-w64-i686-python2-pip unzip winpty
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2017-09-12 03:08:00 +00:00
|
|
|
# Workaround for errors when running "git submodule" commands
|
|
|
|
# See https://github.com/Alexpux/MSYS2-packages/issues/735
|
2017-09-21 01:15:09 +00:00
|
|
|
rm -f /mingw32/bin/envsubst.exe
|
2017-09-12 03:08:00 +00:00
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
python -m pip install --upgrade pip
|
|
|
|
|
|
|
|
pip install pyserial
|
|
|
|
|
2017-03-21 03:17:19 +00:00
|
|
|
# Automatically download precompiled toolchain, unpack at /opt/xtensa-esp32-elf/
|
2018-01-10 03:29:10 +00:00
|
|
|
TOOLCHAIN_ZIP=xtensa-esp32-elf-win32-1.22.0-80-g6c4433a-5.2.0.zip
|
2016-08-17 15:08:22 +00:00
|
|
|
echo "Downloading precompiled toolchain ${TOOLCHAIN_ZIP}..."
|
|
|
|
cd ~
|
|
|
|
curl -LO --retry 10 http://dl.espressif.com/dl/${TOOLCHAIN_ZIP}
|
|
|
|
cd /opt
|
2017-09-21 01:15:09 +00:00
|
|
|
rm -rf /opt/xtensa-esp32-elf # for upgrades
|
2016-08-17 15:08:22 +00:00
|
|
|
unzip ~/${TOOLCHAIN_ZIP}
|
|
|
|
rm ~/${TOOLCHAIN_ZIP}
|
|
|
|
|
|
|
|
cat > /etc/profile.d/esp32_toolchain.sh << EOF
|
2017-03-21 03:17:19 +00:00
|
|
|
# This file was created by ESP-IDF windows_install_prerequisites.sh
|
|
|
|
# and will be overwritten if that script is run again.
|
2017-03-29 23:58:58 +00:00
|
|
|
export PATH="\$PATH:/opt/xtensa-esp32-elf/bin"
|
2016-08-17 15:08:22 +00:00
|
|
|
EOF
|
|
|
|
|
2017-09-21 01:15:09 +00:00
|
|
|
# clean up pacman package cache to save some disk space
|
2016-08-17 15:08:22 +00:00
|
|
|
pacman --noconfirm -Scc
|
|
|
|
|
2017-03-21 03:17:19 +00:00
|
|
|
cat << EOF
|
|
|
|
************************************************
|
|
|
|
MSYS2 environment is now ready to use ESP-IDF.
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2017-03-21 03:17:19 +00:00
|
|
|
1) Run 'source /etc/profile' to add the toolchain to
|
|
|
|
your path in this terminal. This command produces no output.
|
|
|
|
You only need to do this once, future terminals do this
|
|
|
|
automatically when opened.
|
|
|
|
|
|
|
|
2) After ESP-IDF is set up (see setup guide), edit the file
|
|
|
|
`cygpath -w /etc/profile`
|
|
|
|
and add a line to set the variable IDF_PATH so it points to the
|
|
|
|
IDF directory, ie:
|
|
|
|
|
|
|
|
export IDF_PATH=/c/path/to/esp-idf/directory
|
|
|
|
|
|
|
|
************************************************
|
|
|
|
EOF
|