From b1ec14314df213ad327d020dc39e912d51a93841 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Sat, 27 Jan 2024 12:30:28 -0800 Subject: [PATCH] feat: Add BMI323 module for ASUS Ally --- README.md | 1 + build-kmod-bmi323.sh | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100755 build-kmod-bmi323.sh diff --git a/README.md b/README.md index c04dad9f..6afbfadb 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Feel free to PR more kmod build scripts into this repo! - [nvidia-container-tookkit repo](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html#installing-with-yum-or-dnf) - version 1.14 (and newer) provide CDI for podman use of nvidia gpus - [ayn-platform](https://github.com/ShadowBlip/ayn-platform) - Linux drivers for AYN x86 handhelds (akmod from [ublue-os/akmods copr](https://copr.fedorainfracloud.org/coprs/ublue-os/akmods/)) - [bmi260](https://github.com/hhd-dev/bmi260) - kernel module driver for the Bosch BMI260 IMU (akmod from [ublue-os/akmods copr](https://copr.fedorainfracloud.org/coprs/ublue-os/akmods/)) +- [bmi323](https://github.com/hhd-dev/bmi260) - kernel module driver for the Bosch BMI323 IMU (akmod from [ublue-os/akmods copr](https://copr.fedorainfracloud.org/coprs/ublue-os/akmods/)) - [evdi](www.displaylink.com) - kernel module required for use of displaylink (akmod from [negativo17 multimedia repo](https://negativo17.org/multimedia/) - [gasket/apex](https://github.com/google/gasket-driver) - kernel module for Coral Gasket Driver, allowing usage of the Coral EdgeTPU on Linux systems (akmod from [ublue-os/akmods copr](https://copr.fedorainfracloud.org/coprs/ublue-os/akmods/)) - [gcadapter_oc](https://github.com/hannesmann/gcadapter-oc-kmod) - kernel module for overclocking the Nintendo Wii U/Mayflash GameCube adapter (akmod from [ublue-os/akmods copr](https://copr.fedorainfracloud.org/coprs/ublue-os/akmods/)) diff --git a/build-kmod-bmi323.sh b/build-kmod-bmi323.sh new file mode 100755 index 00000000..6a2a51e3 --- /dev/null +++ b/build-kmod-bmi323.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +set -oeux pipefail + +cp /tmp/ublue-os-akmods-addons/rpmbuild/SOURCES/_copr_ublue-os-akmods.repo /etc/yum.repos.d/ + +ARCH="$(rpm -E '%_arch')" +KERNEL="$(rpm -q "${KERNEL_NAME}" --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')" +RELEASE="$(rpm -E '%fedora')" + +rpm-ostree install \ + akmod-bmi323-*.fc${RELEASE}.${ARCH} +akmods --force --kernels "${KERNEL}" --kmod bmi323 +modinfo /usr/lib/modules/${KERNEL}/extra/bmi323/bmi323_{core,i2c}.ko.xz > /dev/null \ +|| (find /var/cache/akmods/bmi323/ -name \*.log -print -exec cat {} \; && exit 1) + +rm -f /etc/yum.repos.d/_copr_ublue-os-akmods.repo