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