AIC wifi and v4l2 extensions: disable them for kernel 6.12 and higher until we have a solution

This commit is contained in:
Igor Pecovnik
2025-01-08 12:58:32 +01:00
committed by Igor
parent 5cc3e2e872
commit ffd1a42d7a
2 changed files with 8 additions and 0 deletions

View File

@@ -10,6 +10,10 @@ 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.12; then
display_alert "Kernel version is too recent" "skipping aic8800 dkms for kernel v${KERNEL_MAJOR_MINOR}" "warn"
return 0
fi
[[ "${INSTALL_HEADERS}" != "yes" ]] || [[ "${KERNEL_HAS_WORKING_HEADERS}" != "yes" ]] && return 0
[[ -z $AIC8800_TYPE ]] && return 0
api_url="https://api.github.com/repos/radxa-pkg/aic8800/releases/latest"

View File

@@ -8,6 +8,10 @@ function extension_finish_config__build_v4l2loopback_dkms_kernel_module() {
}
function post_install_kernel_debs__build_v4l2loopback_dkms_kernel_module() {
if linux-version compare "${KERNEL_MAJOR_MINOR}" ge 6.12; then
display_alert "Kernel version is too recent" "skipping v4l2loopback-dkms for kernel v${KERNEL_MAJOR_MINOR}" "warn"
return 0
fi
[[ "${INSTALL_HEADERS}" != "yes" ]] || [[ "${KERNEL_HAS_WORKING_HEADERS}" != "yes" ]] && return 0
display_alert "Install v4l2loopback-dkms packages, will build kernel module in chroot" "${EXTENSION}" "info"
declare -g if_error_detail_message="v4l2loopback-dkms build failed, extension 'v4l2loopback-dkms'"