2017-02-25 09:49:42 -08:00
# Building in Fedora
2018-09-01 17:54:46 -07:00
Assuming you already have wget and git available, you should be able to build Betaflight on a fresh install of Fedora with the following commands (tested on F18, F20 and Ubuntu 14.04):
2017-02-25 09:49:42 -08:00
```
wget http://distribute.atmel.no/tools/opensource/Atmel-ARM-GNU-Toolchain/4.8.4/arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
tar xf arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
export PATH=$PATH:$PWD/arm-none-eabi/bin
2018-09-01 17:54:46 -07:00
git clone https://github.com/betaflight/betaflight.git
cd betaflight
2017-02-25 09:49:42 -08:00
TARGET=NAZE make
```
2018-09-01 17:54:46 -07:00
This will create betaflight_NAZE.hex in the obj folder.