Skip to content

Commit

Permalink
feat: Add gpd fan driver (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo authored Dec 27, 2024
1 parent fdc8993 commit 502cef6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Containerfile.extra
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ RUN --mount=type=cache,dst=/var/cache/dnf \
/tmp/build-kmod-zenergy.sh && \
/tmp/build-kmod-evdi.sh \
; fi && \
if [[ "${FEDORA_MAJOR_VERSION}" -ge 41 ]]; then \
/tmp/build-kmod-gpd-fan.sh \
; fi && \
/tmp/build-kmod-ayaneo-platform.sh && \
/tmp/build-kmod-ayn-platform.sh && \
/tmp/build-kmod-bmi260.sh && \
Expand Down
18 changes: 18 additions & 0 deletions build-kmod-gpd-fan.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/sh

set -oeux pipefail

ARCH="$(rpm -E '%_arch')"
KERNEL="$(rpm -q "${KERNEL_NAME}" --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')"
RELEASE="$(rpm -E '%fedora')"

cp /tmp/ublue-os-akmods-addons/rpmbuild/SOURCES/_copr_ublue-os-akmods.repo /etc/yum.repos.d/

### BUILD gpd-fan (succeed or fail-fast with debug output)
dnf install -y \
akmod-gpd-fan-*.fc${RELEASE}.${ARCH}
akmods --force --kernels "${KERNEL}" --kmod gpd-fan
modinfo /usr/lib/modules/${KERNEL}/extra/gpd-fan/gpd-fan.ko.xz > /dev/null \
|| (find /var/cache/akmods/gpd-fan/ -name \*.log -print -exec cat {} \; && exit 1)

rm -f /etc/yum.repos.d/_copr_ublue-os-akmods.repo

0 comments on commit 502cef6

Please sign in to comment.