diff options
Diffstat (limited to 'util/msys2_install.sh')
| -rwxr-xr-x | util/msys2_install.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/util/msys2_install.sh b/util/msys2_install.sh deleted file mode 100755 index 5abe4a597..000000000 --- a/util/msys2_install.sh +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | util_dir=$(dirname "$0") | ||
| 4 | |||
| 5 | echo "Installing dependencies needed for the installation" | ||
| 6 | pacman --needed --noconfirm --disable-download-timeout -Sy \ | ||
| 7 | base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-clang git unzip \ | ||
| 8 | mingw-w64-x86_64-python-pip \ | ||
| 9 | mingw-w64-x86_64-avr-binutils mingw-w64-x86_64-avr-gcc mingw-w64-x86_64-avr-libc \ | ||
| 10 | mingw-w64-x86_64-arm-none-eabi-binutils mingw-w64-x86_64-arm-none-eabi-gcc mingw-w64-x86_64-arm-none-eabi-newlib \ | ||
| 11 | mingw-w64-x86_64-avrdude mingw-w64-x86_64-bootloadhid mingw-w64-x86_64-dfu-programmer mingw-w64-x86_64-dfu-util mingw-w64-x86_64-teensy-loader-cli | ||
| 12 | |||
| 13 | echo "Installing drivers" | ||
| 14 | tmpdir=$(mktemp -d) | ||
| 15 | cp "${util_dir}/drivers.txt" $tmpdir | ||
| 16 | pushd $tmpdir > /dev/null | ||
| 17 | wget "https://github.com/qmk/qmk_driver_installer/releases/download/v1.01/qmk_driver_installer.exe" | ||
| 18 | cmd.exe //c "qmk_driver_installer.exe --all --force drivers.txt" | ||
| 19 | popd > /dev/null | ||
| 20 | rm -r $tmpdir | ||
| 21 | |||
| 22 | pip3 install -r "${util_dir}/../requirements.txt" | ||
