]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - util/msys2_install.sh
Added gentoo to installer (#3272)
[qmk_firmware.git] / util / msys2_install.sh
index 282053fe4c5379c0387964e2e641e9ae6792afe0..d9459580c7dd6244467883ff121df5e3c2e68830 100644 (file)
@@ -16,6 +16,7 @@ function install_avr {
     wget "http://ww1.microchip.com/downloads/en/DeviceDoc/avr8-gnu-toolchain-installer-3.5.4.91-win32.any.x86.exe"
     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
 }
 
 function install_arm {
@@ -66,7 +67,7 @@ if [ ! -d "$armtools" ]; then
     while true; do
         echo
         echo "The ARM toolchain is not installed."
-        echo "This is needed for building ARM based keboards."
+        echo "This is needed for building ARM based keyboards."
         read -p "Do you want to install it? (Y/N) " res
         case $res in
             [Yy]* ) install_arm; break;;