diff --git a/Containerfile b/Containerfile index 0fccea12..546c0a3a 100644 --- a/Containerfile +++ b/Containerfile @@ -18,8 +18,6 @@ RUN /tmp/build-ublue-os-akmods-addons.sh RUN /tmp/build-kmod-v4l2loopback.sh RUN /tmp/build-kmod-xpadneo.sh -RUN /tmp/build-kmod-steamdeck.sh -RUN /tmp/build-kmod-gcadapter_oc.sh RUN mkdir -p /var/cache/rpms/{kmods,ublue-os} RUN cp /tmp/ublue-os-akmods-addons/rpmbuild/RPMS/noarch/ublue-os-akmods-addons*.rpm \ diff --git a/README.md b/README.md index 406dec66..59c4f38e 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,6 @@ The rpmfusion and extra repos provide dependencies which are required by the kmo Feel free to PR more kmod build scripts into this repo! - ublue-os-akmods-addons - installs extra repos and our kmods signing key; install and import to allow SecureBoot systems to use these kmods -- [gcadapter_oc](https://github.com/hannesmann/gcadapter-oc-kmod) - kernel module for overclocking the Nintendo Wii U/Mayflash GameCube adapter (akmod from [copr](https://copr.fedorainfracloud.org/coprs/kylegospo/gcadapter_oc-dkms/)) -- [steamdeck](https://lkml.org/lkml/2022/2/5/391) - platform driver for Valve's Steam Deck handheld PC (akmod from [copr](https://copr.fedorainfracloud.org/coprs/kylegospo/steamdeck-kmod/)) - [v4l2loopback](https://github.com/umlaeute/v4l2loopback) - allows creating "virtual video devices" - [xpadneo](https://github.com/atar-axis/xpadneo) - xbox one controller bluetooth driver (akmod from [negativo17 steam repo](https://negativo17.org/steam/) diff --git a/build-kmod-gcadapter_oc.sh b/build-kmod-gcadapter_oc.sh deleted file mode 100755 index f022ca68..00000000 --- a/build-kmod-gcadapter_oc.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -set -oeux pipefail - -ARCH="$(rpm -E '%_arch')" -KERNEL="$(rpm -q kernel --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')" -RELEASE="$(rpm -E '%fedora')" - -wget https://copr.fedorainfracloud.org/coprs/kylegospo/gcadapter_oc-dkms/repo/fedora-${RELEASE}/kylegospo-gcadapter_oc-dkms-fedora-${RELEASE}.repo -O /etc/yum.repos.d/_copr_kylegospo-gcadapter_oc-dkms.repo - -rpm-ostree install \ - akmod-gcadapter_oc-*.fc${RELEASE}.${ARCH} -akmods --force --kernels "${KERNEL}" --kmod gcadapter_oc -modinfo /usr/lib/modules/${KERNEL}/extra/gcadapter_oc/gcadapter_oc.ko.xz > /dev/null \ -|| (find /var/cache/akmods/gcadapter_oc/ -name \*.log -print -exec cat {} \; && exit 1) - -rm -f /etc/yum.repos.d/_copr_kylegospo-gcadapter_oc-dkms.repo diff --git a/build-kmod-steamdeck.sh b/build-kmod-steamdeck.sh deleted file mode 100755 index c9748d02..00000000 --- a/build-kmod-steamdeck.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -set -oeux pipefail - -ARCH="$(rpm -E '%_arch')" -KERNEL="$(rpm -q kernel --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')" -RELEASE="$(rpm -E '%fedora')" - -wget https://copr.fedorainfracloud.org/coprs/kylegospo/steamdeck-kmod/repo/fedora-${RELEASE}/kylegospo-steamdeck-kmod-fedora-${RELEASE}.repo -O /etc/yum.repos.d/_copr_kylegospo-steamdeck-kmod.repo - -rpm-ostree install \ - akmod-steamdeck-*.fc${RELEASE}.${ARCH} -akmods --force --kernels "${KERNEL}" --kmod steamdeck -modinfo /usr/lib/modules/${KERNEL}/extra/steamdeck/steamdeck.ko.xz > /dev/null \ -|| (find /var/cache/akmods/steamdeck/ -name \*.log -print -exec cat {} \; && exit 1) - -rm -f /etc/yum.repos.d/_copr_kylegospo-steamdeck-kmod.repo