extensions: radxa-aic8800: allow 6.17; skip DKMS only on >= 6.18

The upstream driver in radxa-pkg/aic8800 builds successfully against Linux 6.17. Relax the version guard so we only skip installing the aic8800 DKMS package on kernels >= 6.18.
This commit is contained in:
HackingGate
2025-10-05 12:21:35 +09:00
committed by Igor
parent 204b1e402d
commit 33f04bcd57

View File

@@ -10,7 +10,7 @@ function extension_finish_config__install_kernel_headers_for_aic8800_dkms() {
function post_install_kernel_debs__install_aic8800_dkms_package() {
if linux-version compare "${KERNEL_MAJOR_MINOR}" ge 6.17; then
if linux-version compare "${KERNEL_MAJOR_MINOR}" ge 6.18; then
display_alert "Kernel version is too recent" "skipping aic8800 dkms for kernel v${KERNEL_MAJOR_MINOR}" "warn"
return 0
fi