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.sh137
1 files changed, 137 insertions, 0 deletions
diff --git a/util/win_shared_install.sh b/util/win_shared_install.sh
new file mode 100644
index 000000000..d86553bf0
--- /dev/null
+++ b/util/win_shared_install.sh
@@ -0,0 +1,137 @@
1#!/bin/bash
2
3download_dir=win_downloaded
4wsl_download_dir=wsl_downloaded
5
6function install_utils {
7 rm -f -r $download_dir
8 mkdir $download_dir
9
10 pushd $download_dir
11
12 echo "Installing dfu-programmer"
13 wget 'http://downloads.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip'
14 unzip -d dfu-programmer dfu-programmer-win-0.7.2.zip
15
16 echo "Installing dfu-util"
17 wget 'http://dfu-util.sourceforge.net/releases/dfu-util-0.9-win64.zip'
18 unzip dfu-util-0.9-win64.zip
19
20 echo "Installing teensy_loader_cli"
21 wget 'https://www.pjrc.com/teensy/teensy_loader_cli_windows.zip'
22 unzip teensy_loader_cli_windows.zip
23
24 echo "Installing Atmel Flip"
25 wget 'http://www.atmel.com/images/Flip%20Installer%20-%203.4.7.112.exe'
26 mv Flip\ Installer\ \-\ 3.4.7.112.exe FlipInstaller.exe
27
28 echo "Downloading the QMK driver installer"
29 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 -
30
31 rm -f *.zip
32
33 popd > /dev/null
34}
35
36function install_drivers {
37 pushd $download_dir
38 cmd.exe /C qmk_driver_installer.exe $1 $2 ../drivers.txt
39 popd > /dev/null
40}
41
42pushd "$dir"
43
44if [ -d "$wsl_download_dir" ]; then
45 echo "Renaming existing wsl_download_dir to win_download"
46 mv -f "$wsl_download_dir" "$download_dir"
47fi
48
49if [ ! -d "$download_dir" ]; then
50 install_utils
51else
52 while true; do
53 echo
54 read -p "The utils seem to already be downloaded, do you want to re-download them and update to the newest version (Y/N) " res
55 case $res in
56 [Yy]* ) install_utils; break;;
57 [Nn]* ) break;;
58 * ) echo "Invalid answer";;
59 esac
60 done
61fi
62
63while true; do
64 echo
65 read -p "Flip need to be installed if you want to use that for programming, do you want to install it now? (Y/N) " res
66 case $res in
67 [Yy]* ) cmd.exe /c $download_dir\\FlipInstaller.exe; break;;
68 [Nn]* ) break;;
69 * ) echo "Invalid answer";;
70 esac
71done
72
73
74while true; do
75 echo
76 echo "Which USB drivers do you want to install?"
77 echo "(A)all - All supported drivers will be installed"
78 echo "(C)onnected - Only drivers for connected keyboards (in bootloader/flashing mode) will be installed"
79 echo "(F)force - Like all, but will also override existing drivers for connected keyboards"
80 echo "(N)one - No drivers will be installed, flashing your keyboard will most likely not work"
81 read -p "(A/C/F/N)? " res
82 case $res in
83 [Aa]* ) install_drivers --all; break;;
84 [Cc]* ) install_drivers; break;;
85 [Ff]* ) install_drivers --all --force; break;;
86 [Nn]* ) break;;
87 * ) echo "Invalid answer";;
88 esac
89done
90
91echo
92echo "Creating a softlink to the utils directory as ~/qmk_utils."
93echo "This is needed so that the the make system can find all utils it need."
94read -p "Press any key to continue (ctrl-c to abort)"
95ln -sfn "$dir" ~/qmk_utils
96
97if grep "^source ~/qmk_utils/activate_wsl.sh$" ~/.bashrc
98then
99 echo
100 echo "The line source ~/qmk_utils/activate_wsl.sh is already added to your /.bashrc"
101 echo "Not adding it twice"
102else
103 while true; do
104 echo
105 echo "Do you want to add 'source ~/qmk_utils/activate_wsl.sh' to the end of you .bashrc file?"
106 echo "Without this make won't find the needed utils, so if you don't want to do it automatically,"
107 echo "then you have to do it manually."
108 read -p "(Y/N)? " res
109 case $res in
110 [Yy]* ) echo "source ~/qmk_utils/activate_wsl.sh" >> ~/.bashrc; break;;
111 [Nn]* ) break;;
112 * ) echo "Invalid answer";;
113 esac
114 done
115fi
116
117while true; do
118 echo
119 echo "Do you want to add a symlink to the QMK repository in your home directory for convenience?"
120 echo "This will create a folder 'qmk_firmware' in your home directory."
121 echo "In the future you can use this folder instead of the full path on your windows file system"
122 read -p "(Y/N)? " res
123 case $res in
124 [Yy]* ) ln -sfn "$dir/.." ~/qmk_firmware; break;;
125 [Nn]* ) break;;
126 * ) echo "Invalid answer";;
127 esac
128done
129
130echo
131echo "******************************************************************************"
132echo "Installation completed!"
133echo "You need to open a new batch command prompt for all the utils to work properly"
134echo "******************************************************************************"
135
136popd > /dev/null
137