radxa-zero3: enable wifi extension by default. allow newer kernels

This commit is contained in:
EvilOlaf
2025-04-05 16:10:49 +02:00
committed by Igor
parent ac49262510
commit cefdde835a
2 changed files with 6 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ BOARD_NAME="Radxa ZERO 3"
BOARDFAMILY="rk35xx"
BOARD_MAINTAINER=""
BOOTCONFIG="radxa-zero3-rk3566_defconfig"
KERNEL_TARGET="vendor,edge"
KERNEL_TARGET="vendor,current,edge"
KERNEL_TEST_TARGET="vendor"
FULL_DESKTOP="yes"
BOOT_LOGO="desktop"
@@ -12,6 +12,10 @@ IMAGE_PARTITION_TABLE="gpt"
BOOT_SCENARIO="spl-blobs"
BOOTFS_TYPE="fat" # Only for vendor/legacy
AIC8800_TYPE="sdio"
enable_extension "radxa-aic8800"
function post_family_config__use_mainline_uboot_except_vendor() {
# use mainline u-boot for _current_ and _edge_
if [[ "$BRANCH" != "current" && "$BRANCH" != "edge" ]]; then

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.12; then
if linux-version compare "${KERNEL_MAJOR_MINOR}" ge 6.15; then
display_alert "Kernel version is too recent" "skipping aic8800 dkms for kernel v${KERNEL_MAJOR_MINOR}" "warn"
return 0
fi