aboutsummaryrefslogtreecommitdiff
path: root/util/win_shared_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/win_shared_install.sh')
-rw-r--r--util/win_shared_install.sh80
1 files changed, 80 insertions, 0 deletions
diff --git a/util/win_shared_install.sh b/util/win_shared_install.sh
new file mode 100644
index 000000000..8d1949ae9
--- /dev/null
+++ b/util/win_shared_install.sh
@@ -0,0 +1,80 @@
1#!/bin/bash
2
3function install_utils {
4 rm -f -r "$download_dir"
5 mkdir "$download_dir"
6
7 pushd "$download_dir"
8
9 echo "Installing dfu-programmer"
10 wget 'http://downloads.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip'
11 unzip -d dfu-programmer dfu-programmer-win-0.7.2.zip
12
13 echo "Installing dfu-util"
14 wget 'http://dfu-util.sourceforge.net/releases/dfu-util-0.9-win64.zip'
15 unzip dfu-util-0.9-win64.zip
16
17 echo "Installing teensy_loader_cli"
18 wget 'https://www.pjrc.com/teensy/teensy_loader_cli_windows.zip'
19 unzip teensy_loader_cli_windows.zip
20
21 echo "Installing Atmel Flip"
22 wget 'http://www.atmel.com/images/Flip%20Installer%20-%203.4.7.112.exe'
23 mv Flip\ Installer\ \-\ 3.4.7.112.exe FlipInstaller.exe
24
25 echo "Downloading the QMK driver installer"
26 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 -
27
28 rm -f *.zip
29
30 popd > /dev/null
31}
32
33function install_drivers {
34 pushd "$download_dir"
35 cp -f "$dir/drivers.txt" .
36 echo
37 cmd.exe /c "qmk_driver_installer.exe $1 $2 drivers.txt"
38 popd > /dev/null
39}
40
41pushd "$dir"
42
43if [ ! -d "$download_dir" ]; then
44 install_utils
45else
46 while true; do
47 echo
48 echo "The utils seem to already be downloaded."
49 read -p "Do you want to re-download them and update to the newest version (Y/N) " res
50 case $res in
51 [Yy]* ) install_utils; break;;
52 [Nn]* ) break;;
53 * ) echo "Invalid answer";;
54 esac
55 done
56fi
57
58while true; do
59 echo
60 echo "Which USB drivers do you want to install?"
61 echo "(A)all - All supported drivers will be installed"
62 echo "(C)onnected - Only drivers for connected keyboards (in bootloader/flashing mode)"
63 echo " will be installed"
64 echo "(F)force - Like all, but will also override existing drivers for connected"
65 echo " keyboards"
66 echo "(N)one - No drivers will be installed,"
67 echo " flashing your keyboard will most likely not work"
68 read -p "(A/C/F/N)? " res
69 case $res in
70 [Aa]* ) install_drivers --all; break;;
71 [Cc]* ) install_drivers; break;;
72 [Ff]* ) install_drivers --all --force; break;;
73 [Nn]* ) break;;
74 * ) echo "Invalid answer";;
75 esac
76done
77
78
79popd > /dev/null
80