From 65f999d4b773bce5b7d1f1520ac0b2fce236d74e Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Mon, 22 Jan 2024 03:54:42 +0000 Subject: [PATCH 1/2] dnf copr enable erovia/dfu-programmer --- util/install/fedora.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/install/fedora.sh b/util/install/fedora.sh index 03e05a42fece..5440ac2d7109 100755 --- a/util/install/fedora.sh +++ b/util/install/fedora.sh @@ -3,6 +3,11 @@ _qmk_install() { echo "Installing dependencies" + . /etc/os-release + if [ "$VERSION_ID" == "38" ]; 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 \ From 6c066bbbc893443d8d543784d0ceb987dd4cf1b5 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Mon, 22 Jan 2024 03:58:51 +0000 Subject: [PATCH 2/2] Update fedora.sh --- util/install/fedora.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/install/fedora.sh b/util/install/fedora.sh index 5440ac2d7109..d3bc90b17656 100755 --- a/util/install/fedora.sh +++ b/util/install/fedora.sh @@ -4,7 +4,7 @@ _qmk_install() { echo "Installing dependencies" . /etc/os-release - if [ "$VERSION_ID" == "38" ]; then + if [ "$VERSION_ID" == "39" ]; then sudo dnf $SKIP_PROMPT copr enable erovia/dfu-programmer fi