diff options
author | Ryan <fauxpark@gmail.com> | 2020-05-19 21:39:52 +1000 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-06-12 17:00:27 +0900 |
commit | b86d1cad9eca5ac6fb5436141979f6e5db4785ba (patch) | |
tree | ee7bc2c2f869420819d4ff9c1f1cc894c0371a82 /util | |
parent | 9d171fcb8973a3cb707afa2905f865a14d6f3c34 (diff) |
MSYS2 install: bodge out avrdude package installation for USBaspLoader
Diffstat (limited to 'util')
-rwxr-xr-x | util/msys2_install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/msys2_install.sh b/util/msys2_install.sh index 55df9c007b..41200dc786 100755 --- a/util/msys2_install.sh +++ b/util/msys2_install.sh @@ -19,7 +19,11 @@ function install_avr { mv avr-gcc-8.3.0-x86-mingw avr8-gnu-toolchain 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 + + # FIXME: As of 2020-05-19, the MSYS2 avrdude cannot flash USBaspLoader devices, for some reason + # (warning: cannot set sck period) + # However, the avr-gcc toolchain above contains an avrdude which can, so let's just not install this for now + #pacman --needed --disable-download-timeout -S mingw-w64-x86_64-avrdude } function install_arm { |