]> git.donarmstrong.com Git - qmk_firmware.git/blob - util/win_shared_install.sh
Update the urls for atmel tools
[qmk_firmware.git] / util / win_shared_install.sh
1 #!/bin/bash
2
3 function 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     # This URL has changed and I can't find the new location. Commenting out until we figure out the new URL or determine this isn't needed. -skullY
22     #echo "Installing Atmel Flip"
23     #wget 'http://www.atmel.com/images/Flip%20Installer%20-%203.4.7.112.exe'
24     #mv Flip\ Installer\ \-\ 3.4.7.112.exe FlipInstaller.exe
25
26     echo "Downloading the QMK driver installer"
27     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 -
28
29     rm -f *.zip
30
31     popd > /dev/null
32 }
33
34 function install_drivers {
35     pushd "$download_dir"
36     cp -f "$dir/drivers.txt" .
37     echo 
38     cmd.exe /c "qmk_driver_installer.exe $1 $2 drivers.txt"
39     popd > /dev/null
40 }
41
42 pushd "$dir"
43
44 if [ ! -d "$download_dir" ]; then
45     install_utils
46 else
47     while true; do
48         echo
49         echo "The utils seem to already be downloaded."
50         read -p "Do you want to re-download them and update to the newest version (Y/N) " res
51         case $res in
52             [Yy]* ) install_utils; break;;
53             [Nn]* ) break;;
54             * ) echo "Invalid answer";;
55         esac
56     done
57 fi
58
59 while true; do
60     echo
61     echo "Which USB drivers do you want to install?"
62     echo "(A)all - All supported drivers will be installed"
63     echo "(C)onnected - Only drivers for connected keyboards (in bootloader/flashing mode)"
64     echo "              will be installed"
65     echo "(F)force - Like all, but will also override existing drivers for connected"
66     echo "           keyboards"
67     echo "(N)one - No drivers will be installed,"
68     echo "         flashing your keyboard will most likely not work"
69     read -p "(A/C/F/N)? " res
70     case $res in
71         [Aa]* ) install_drivers --all; break;;
72         [Cc]* ) install_drivers; break;;
73         [Ff]* ) install_drivers --all --force; break;;
74         [Nn]* ) break;;
75         * ) echo "Invalid answer";;
76     esac
77 done
78
79
80 popd > /dev/null
81