1
0
Fork 0
qmk_firmware/util/msys2_install.sh

119 lines
3.6 KiB
Bash
Raw Normal View History

#!/bin/bash
dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
2017-07-11 13:44:46 +00:00
download_dir=~/qmk_utils
avrtools=avr8-gnu-toolchain
2017-07-11 14:18:24 +00:00
armtools=gcc-arm-none-eabi
2017-07-11 14:32:58 +00:00
installflip=false
2017-07-10 15:16:35 +00:00
echo "Installing dependencies needed for the installation (quazip)"
pacman --needed -S msys/unzip msys/p7zip base-devel msys/git mingw-w64-x86_64-toolchain
2017-07-11 13:44:46 +00:00
2017-07-10 15:05:32 +00:00
source "$dir/win_shared_install.sh"
2017-07-11 13:44:46 +00:00
function install_avr {
rm -f -r "$avrtools"
2018-01-03 18:00:15 +00:00
wget "http://ww1.microchip.com/downloads/en/DeviceDoc/avr8-gnu-toolchain-installer-3.5.4.91-win32.any.x86.exe"
2017-07-11 13:44:46 +00:00
7z x avr8-gnu-toolchain-installer-3.5.4.91-win32.any.x86.exe
rm avr8-gnu-toolchain-installer-3.5.4.91-win32.any.x86.exe
pacman --needed -S mingw-w64-x86_64-avrdude
2017-07-11 13:44:46 +00:00
}
2017-07-11 14:18:24 +00:00
function install_arm {
wget -O gcc-arm-none-eabi.zip "https://developer.arm.com/-/media/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-win32.zip?product=GNU%20ARM%20Embedded%20Toolchain,ZIP,,Windows,6-2017-q2-update"
unzip -d gcc-arm-none-eabi gcc-arm-none-eabi.zip
rm gcc-arm-none-eabi.zip
}
2017-07-11 13:44:46 +00:00
2017-07-11 14:32:58 +00:00
function extract_flip {
rm -f -r flip
7z -oflip x FlipInstaller.exe
}
2017-07-11 14:18:24 +00:00
pushd "$download_dir"
2017-07-11 13:44:46 +00:00
2017-07-11 14:32:58 +00:00
if [ -f "FlipInstaller.exe" ]; then
echo
echo "Extracting flip"
extract_flip
fi
2017-07-11 13:44:46 +00:00
if [ ! -d "$avrtools" ]; then
while true; do
echo
echo "The AVR toolchain is not installed."
echo "This is needed for building AVR based keboards."
read -p "Do you want to install it? (Y/N) " res
case $res in
[Yy]* ) install_avr; break;;
[Nn]* ) break;;
* ) echo "Invalid answer";;
esac
done
else
while true; do
echo
echo "The AVR toolchain is already installed"
read -p "Do you want to reinstall? (Y/N) " res
case $res in
[Yy]* ) install_avr; break;;
[Nn]* ) break;;
* ) echo "Invalid answer";;
esac
done
fi
2017-07-11 14:18:24 +00:00
if [ ! -d "$armtools" ]; then
while true; do
echo
echo "The ARM toolchain is not installed."
echo "This is needed for building ARM based keyboards."
2017-07-11 14:18:24 +00:00
read -p "Do you want to install it? (Y/N) " res
case $res in
[Yy]* ) install_arm; break;;
[Nn]* ) break;;
* ) echo "Invalid answer";;
esac
done
else
while true; do
echo
echo "The ARM toolchain is already installed"
read -p "Do you want to reinstall? (Y/N) " res
case $res in
[Yy]* ) install_arm; break;;
[Nn]* ) break;;
* ) echo "Invalid answer";;
esac
done
fi
2017-07-11 13:44:46 +00:00
popd
2017-07-11 14:55:03 +00:00
cp -f "$dir/activate_msys2.sh" "$download_dir/"
if grep "^source ~/qmk_utils/activate_msys2.sh$" ~/.bashrc
then
echo
echo "The line source ~/qmk_utils/activate_msys2.sh is already added to your /.bashrc"
echo "Not adding it twice!"
else
while true; do
echo
echo "Do you want to add 'source ~/qmk_utils/activate_msys2.sh' to the end of your"
echo ".bashrc file? Without this make won't find the needed utils, so if you don't"
echo "want to do it automatically, then you have to do it manually later."
read -p "(Y/N)? " res
case $res in
[Yy]* ) echo "source ~/qmk_utils/activate_msys2.sh" >> ~/.bashrc; break;;
[Nn]* ) break;;
* ) echo "Invalid answer";;
esac
done
fi
2017-07-10 15:05:32 +00:00
echo
echo "******************************************************************************"
echo "Installation completed!"
2017-07-11 14:55:03 +00:00
echo "Please close this Window and restart MSYS2 MinGW"
2018-01-03 18:00:15 +00:00
echo "******************************************************************************"