aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2016-08-27 23:43:49 +0300
committerFred Sundvik <fsundvik@gmail.com>2016-08-27 23:43:49 +0300
commit53302328d0425bacdf4b0a763699308b9179f5ff (patch)
tree5cc332f79e71d2f91e25f2cc0a1099a125082a5e /readme.md
parentf815b4871ebc5cc2f8d1a306eceec68c0a973a4c (diff)
downloadqmk_firmware-53302328d0425bacdf4b0a763699308b9179f5ff.tar.gz
qmk_firmware-53302328d0425bacdf4b0a763699308b9179f5ff.zip
Add dfu-util to the instructions
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md15
1 files changed, 10 insertions, 5 deletions
diff --git a/readme.md b/readme.md
index 473fd6a7c..e905fb6b7 100644
--- a/readme.md
+++ b/readme.md
@@ -69,11 +69,12 @@ Here are the steps
69### Windows (Vista and later) 69### Windows (Vista and later)
701. If you have ever installed WinAVR, uninstall it. 701. If you have ever installed WinAVR, uninstall it.
712. Install [MHV AVR Tools](https://infernoembedded.com/sites/default/files/project/MHV_AVR_Tools_20131101.exe). Disable smatch, but **be sure to leave the option to add the tools to the PATH checked**. 712. Install [MHV AVR Tools](https://infernoembedded.com/sites/default/files/project/MHV_AVR_Tools_20131101.exe). Disable smatch, but **be sure to leave the option to add the tools to the PATH checked**.
723. Install [MinGW](https://sourceforge.net/projects/mingw/files/Installer/mingw-get-setup.exe/download). During installation, uncheck the option to install a graphical user interface. **DO NOT change the default installation folder.** The scripts depend on the default location. 723. If you are going to flash Infinity based keyboards you will need to install dfu-util, refer to the instructions by [Input Club](https://github.com/kiibohd/controller/wiki/Loading-DFU-Firmware).
734. Clone this repository. [This link will download it as a zip file, which you'll need to extract.](https://github.com/jackhumbert/qmk_firmware/archive/master.zip) Open the extracted folder in Windows Explorer. 734. Install [MinGW](https://sourceforge.net/projects/mingw/files/Installer/mingw-get-setup.exe/download). During installation, uncheck the option to install a graphical user interface. **DO NOT change the default installation folder.** The scripts depend on the default location.
745. Double-click on the 1-setup-path-win batch script to run it. You'll need to accept a User Account Control prompt. Press the spacebar to dismiss the success message in the command prompt that pops up. 745. Clone this repository. [This link will download it as a zip file, which you'll need to extract.](https://github.com/jackhumbert/qmk_firmware/archive/master.zip) Open the extracted folder in Windows Explorer.
756. Right-click on the 2-setup-environment-win batch script, select "Run as administrator", and accept the User Account Control prompt. This part may take a couple of minutes, and you'll need to approve a driver installation, but once it finishes, your environment is complete! 756. Double-click on the 1-setup-path-win batch script to run it. You'll need to accept a User Account Control prompt. Press the spacebar to dismiss the success message in the command prompt that pops up.
767. Future build commands should be run from the MHV AVR Shell, which sets up an environment compatible with colorful build output. The standard Command Prompt will also work, but add `COLOR=false` to the end of all make commands when using it. 767. Right-click on the 2-setup-environment-win batch script, select "Run as administrator", and accept the User Account Control prompt. This part may take a couple of minutes, and you'll need to approve a driver installation, but once it finishes, your environment is complete!
778. Future build commands should be run from the MHV AVR Shell, which sets up an environment compatible with colorful build output. The standard Command Prompt will also work, but add `COLOR=false` to the end of all make commands when using it.
77 78
78### Mac 79### Mac
79If you're using [homebrew,](http://brew.sh/) you can use the following commands: 80If you're using [homebrew,](http://brew.sh/) you can use the following commands:
@@ -90,6 +91,10 @@ You can also try these instructions:
902. Install the Command Line Tools from `Xcode->Preferences->Downloads`. 912. Install the Command Line Tools from `Xcode->Preferences->Downloads`.
913. Install [DFU-Programmer][dfu-prog]. 923. Install [DFU-Programmer][dfu-prog].
92 93
94If you are going to flash Infinity based keyboards you will also need dfu-util
95
96 brew install dfu-util
97
93### Linux 98### Linux
94 99
95To ensure you are always up to date, you can just run `sudo utils/install_dependencies.sh`. That should always install all the dependencies needed. 100To ensure you are always up to date, you can just run `sudo utils/install_dependencies.sh`. That should always install all the dependencies needed.