Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AIC wifi and v4l2 extensions: disable them for kernel 6.12 and higher #7680

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/radxa-aic8800.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions extensions/v4l2loopback-dkms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'"
Expand Down
Loading