mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-09 21:58:19 +00:00
Download windows flashing utils and driver_installer
This commit is contained in:
parent
d0d81eecef
commit
28a4e90565
2 changed files with 34 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -22,6 +22,7 @@ quantum/version.h
|
|||
.idea/
|
||||
CMakeLists.txt
|
||||
.DS_STORE
|
||||
/util/wsl_downloaded
|
||||
|
||||
# Eclipse/PyCharm/Other IDE Settings
|
||||
.cproject
|
||||
|
|
33
util/wsl_install.sh
Normal file
33
util/wsl_install.sh
Normal file
|
@ -0,0 +1,33 @@
|
|||
#!/bin/bash
|
||||
|
||||
rm -f -r wsl_downloaded
|
||||
mkdir wsl_downloaded
|
||||
pushd wsl_downloaded
|
||||
|
||||
echo "Installing dependencies (7z-full, wget)"
|
||||
echo "This will ask for the sudo password"
|
||||
sudo apt-get install 7z-full wget
|
||||
|
||||
echo "Installing dfu-programmer"
|
||||
wget 'http://downloads.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip'
|
||||
7z x -odfu-programmer dfu-programmer-win-0.7.2.zip
|
||||
|
||||
echo "Installing dfu-util"
|
||||
wget 'http://dfu-util.sourceforge.net/releases/dfu-util-0.9-win64.zip'
|
||||
7z x dfu-util-0.9-win64.zip
|
||||
|
||||
echo "Installing teensy_loader_cli"
|
||||
wget 'https://www.pjrc.com/teensy/teensy_loader_cli_windows.zip'
|
||||
7z x teensy_loader_cli_windows.zip
|
||||
|
||||
echo "Installing Atmel Flip"
|
||||
wget 'http://www.atmel.com/images/Flip%20Installer%20-%203.4.7.112.exe'
|
||||
7z x -oFlip Flip\ Installer\ -\ 3.4.7.112.exe
|
||||
|
||||
echo "Downloading the QMK driver installer"
|
||||
wget -qO- https://api.github.com/repos/qmk/qmk_driver_installer/releases | grep browser_download_url | head -n 1 | cut -d '"' -f 4 | wget -i -
|
||||
|
||||
rm -f *.zip
|
||||
rm Flip\ Installer\ -\ 3.4.7.112.exe
|
||||
popd
|
||||
|
Loading…
Reference in a new issue