summaryrefslogtreecommitdiff
path: root/util/msys2_install.sh
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-08-14 08:26:14 +1000
committerDrashna Jael're <drashna@live.com>2020-09-30 02:41:37 -0700
commit6a0b2d77a564bf595e65919ef626ac676cfc044e (patch)
treec733298149475b178233707c3003668df75799c2 /util/msys2_install.sh
parent86fc93a8b47ca59a16850b7c2b68b220fb4776d0 (diff)
MSYS2: install packages for dfu-programmer, dfu-util, teensy-loader-cli (#10007)
Diffstat (limited to 'util/msys2_install.sh')
-rwxr-xr-xutil/msys2_install.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/msys2_install.sh b/util/msys2_install.sh
index 1b50bba707..1351aa5d73 100755
--- a/util/msys2_install.sh
+++ b/util/msys2_install.sh
@@ -20,7 +20,7 @@ function install_avr {
rm avr8-gnu-toolchain/bin/make.exe
rm avr-gcc-8.3.0-x86-mingw.zip
- pacman --needed --disable-download-timeout -S mingw-w64-x86_64-avrdude mingw-w64-x86_64-bootloadhid
+ pacman --needed --noconfirm --disable-download-timeout -S mingw-w64-x86_64-avrdude mingw-w64-x86_64-bootloadhid mingw-w64-x86_64-dfu-programmer mingw-w64-x86_64-teensy-loader-cli
}
function install_arm {
@@ -29,6 +29,8 @@ function install_arm {
echo "Extracting ARM toolchain..."
unzip -q -d gcc-arm-none-eabi gcc-arm-none-eabi-8-2019-q3-update-win32.zip
rm gcc-arm-none-eabi-8-2019-q3-update-win32.zip
+
+ pacman --needed --noconfirm --disable-download-timeout -S mingw-w64-x86_64-dfu-util
}
pushd "$download_dir"