From 07592ed71b5bb5257e323c423af4d1a96ea40bb1 Mon Sep 17 00:00:00 2001 From: Chetan Padia Date: Wed, 19 Jun 2024 15:29:26 +0100 Subject: [PATCH] Support Linux kernel version 6+ --- dkms.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dkms.conf b/dkms.conf index aa66661..222d92d 100644 --- a/dkms.conf +++ b/dkms.conf @@ -1,7 +1,7 @@ PACKAGE_NAME="cm4io-fan" PACKAGE_VERSION="0.2.0" -# allow anything 5.10 thru 5.99, which should be fine... -BUILD_EXCLUSIVE_KERNEL="^5\.([1-9][0-9])\..*" +# allow anything 5.10 thru 5.99, and 6 which should be fine... +BUILD_EXCLUSIVE_KERNEL="^((5\.([1-9][0-9])\.)|(6\.)).*" MAKE="make" CLEAN="make clean"