]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Added logging to setup script
authorNoah Andrews <NoahAndrews@users.noreply.github.com>
Wed, 2 Mar 2016 17:48:10 +0000 (12:48 -0500)
committerNoah Andrews <NoahAndrews@users.noreply.github.com>
Wed, 2 Mar 2016 17:48:10 +0000 (12:48 -0500)
setup-environment-win.bat

index 1fbd35a69a7d82a203f8df6e00877c337f529227..91b6c91e39388b86a8b6305f9f34f1b4c6b16479 100644 (file)
@@ -6,20 +6,36 @@ if NOT ["%errorlevel%"]==["0"] (
        exit
 ) 
 
+echo ------------------------------------------
+echo Installing wget and unzip
+echo ------------------------------------------
 mingw-get install msys-wget-bin msys-unzip-bin
 cd \MinGW\bin
 
 mkdir temp
-cd 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
\ No newline at end of file
+rm -rf temp
+
+echo ------------------------------------------
+echo Finished!
+pause
\ No newline at end of file