diff options
author | Stephan Bösebeck <sb@caluga.de> | 2016-03-08 23:56:50 +0100 |
---|---|---|
committer | Stephan Bösebeck <sb@caluga.de> | 2016-03-08 23:56:50 +0100 |
commit | 3119778e0cef697d78b5f425822382a455cf6d36 (patch) | |
tree | 3bcb802e2bb133765c04e7bd81da04b172017bf2 /2-setup-environment-win.bat | |
parent | 98fe40caa7b862a26f8900f8b9547f8c9b61726b (diff) | |
parent | 7d3ebd7b40b96f576fe4608b33f47329c334925b (diff) |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to '2-setup-environment-win.bat')
-rw-r--r-- | 2-setup-environment-win.bat | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/2-setup-environment-win.bat b/2-setup-environment-win.bat new file mode 100644 index 0000000000..91b6c91e39 --- /dev/null +++ b/2-setup-environment-win.bat @@ -0,0 +1,41 @@ +@echo off +setx /M test test > nul 2>&1 +if NOT ["%errorlevel%"]==["0"] ( + echo FAILED. Rerun with administrator privileges. + pause + exit +) + +echo ------------------------------------------ +echo Installing wget and unzip +echo ------------------------------------------ +mingw-get install msys-wget-bin msys-unzip-bin +cd \MinGW\bin + +mkdir temp +cd temp +echo ------------------------------------------ +echo Installing dfu-programmer. +echo ------------------------------------------ +wget http://iweb.dl.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip +unzip dfu-programmer-win-0.7.2.zip +copy dfu-programmer.exe .. + +echo ------------------------------------------ +echo Downloading driver +echo ------------------------------------------ +wget http://iweb.dl.sourceforge.net/project/libusb-win32/libusb-win32-releases/1.2.6.0/libusb-win32-bin-1.2.6.0.zip +unzip libusb-win32-bin-1.2.6.0.zip +cp libusb-win32-bin-1.2.6.0\bin\x86\libusb0_x86.dll ../libusb0.dll + +echo ------------------------------------------ +echo Installing driver. Accept prompt. +echo ------------------------------------------ +pnputil -i -a dfu-prog-usb-1.2.2\atmel_usb_dfu.inf + +cd .. +rm -rf temp + +echo ------------------------------------------ +echo Finished! +pause
\ No newline at end of file |