Browse Source

Workaround for dfu-programmer on Fedora 39 (#22945)

pull/22965/head 0.23.7
Joel Challis 3 months ago
committed by GitHub
parent
commit
b7468f4785
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      util/install/fedora.sh

+ 5
- 0
util/install/fedora.sh View File

@ -3,6 +3,11 @@
_qmk_install() {
echo "Installing dependencies"
. /etc/os-release
if [ "$VERSION_ID" == "39" ]; then
sudo dnf $SKIP_PROMPT copr enable erovia/dfu-programmer
fi
# TODO: Check whether devel/headers packages are really needed
sudo dnf $SKIP_PROMPT install \
clang diffutils git gcc glibc-headers kernel-devel kernel-headers \


Loading…
Cancel
Save