diff options
Diffstat (limited to 'util/install/fedora.sh')
| -rwxr-xr-x | util/install/fedora.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/util/install/fedora.sh b/util/install/fedora.sh new file mode 100755 index 000000000..250cda662 --- /dev/null +++ b/util/install/fedora.sh | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | _qmk_install() { | ||
| 4 | echo "Installing dependencies" | ||
| 5 | |||
| 6 | # TODO: Check whether devel/headers packages are really needed | ||
| 7 | sudo dnf -y install \ | ||
| 8 | clang diffutils git gcc glibc-headers kernel-devel kernel-headers make unzip wget zip \ | ||
| 9 | python3 \ | ||
| 10 | avr-binutils avr-gcc avr-libc \ | ||
| 11 | arm-none-eabi-binutils-cs arm-none-eabi-gcc-cs arm-none-eabi-newlib \ | ||
| 12 | avrdude dfu-programmer dfu-util | ||
| 13 | |||
| 14 | python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt | ||
| 15 | } | ||
