]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Download windows flashing utils and driver_installer
authorFred Sundvik <fsundvik@gmail.com>
Sun, 28 May 2017 09:24:05 +0000 (12:24 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Sun, 28 May 2017 18:30:55 +0000 (21:30 +0300)
.gitignore
util/wsl_install.sh [new file with mode: 0644]

index 6029afce4f1238aa12f8062de92ac8be1a251aa9..0b48b80e59552169388bd0a5cec97e1f6f7a2507 100644 (file)
@@ -22,6 +22,7 @@ quantum/version.h
 .idea/
 CMakeLists.txt
 .DS_STORE
+/util/wsl_downloaded
 
 # Eclipse/PyCharm/Other IDE Settings
 .cproject
diff --git a/util/wsl_install.sh b/util/wsl_install.sh
new file mode 100644 (file)
index 0000000..87aad77
--- /dev/null
@@ -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
+