diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2018-02-19 14:09:05 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-02-19 14:09:05 -0500 |
commit | 8df2ee4ec3758b45fe762fd8fc1840e04c8f5f73 (patch) | |
tree | 71e4bfc87a52bc64fc32067d68254c1a1772e8dc /docs/getting_started_build_tools.md | |
parent | 0e92d99cdc2da358f14e6faf421b71edd0ef7f6c (diff) | |
download | qmk_firmware-8df2ee4ec3758b45fe762fd8fc1840e04c8f5f73.tar.gz |
Minor updates to docs (#2406)
* [docs/] Cleaning up some language to make it more clear.
* [docs/] Adding instructions for installing deps on RH / Fedora.
Diffstat (limited to 'docs/getting_started_build_tools.md')
-rw-r--r-- | docs/getting_started_build_tools.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/getting_started_build_tools.md b/docs/getting_started_build_tools.md index cd748dbf8..13c8def52 100644 --- a/docs/getting_started_build_tools.md +++ b/docs/getting_started_build_tools.md @@ -31,11 +31,14 @@ git Install the dependencies with your favorite package manager. -Debian/Ubuntu example: +Debian / Ubuntu example: sudo apt-get update sudo apt-get install gcc unzip wget zip gcc-avr binutils-avr avr-libc dfu-programmer dfu-util gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi +Fedora / Red Hat example: + sudo dnf install gcc unzip wget zip dfu-util dfu-programmer avr-gcc avr-libc binutils-avr32-linux-gnu arm-none-eabi-gcc-cs arm-none-eabi-binutils-cs arm-none-eabi-newlib + ## Nix If you're on [NixOS](https://nixos.org/), or have Nix installed on Linux or macOS, run `nix-shell` from the repository root to get a build environment. |