Skip to content

Commit 1a1b4ce

Browse files
committed
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.
1 parent 89d6ede commit 1a1b4ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/radxa-aic8800.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function extension_finish_config__install_kernel_headers_for_aic8800_dkms() {
1010

1111
function post_install_kernel_debs__install_aic8800_dkms_package() {
1212

13-
if linux-version compare "${KERNEL_MAJOR_MINOR}" ge 6.17; then
13+
if linux-version compare "${KERNEL_MAJOR_MINOR}" ge 6.18; then
1414
display_alert "Kernel version is too recent" "skipping aic8800 dkms for kernel v${KERNEL_MAJOR_MINOR}" "warn"
1515
return 0
1616
fi

0 commit comments

Comments
 (0)