Skip to content
Open
Show file tree
Hide file tree
Changes from 7 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
24 changes: 24 additions & 0 deletions config/boards/cix-acpi.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Cix CD8180/CD8160 SoC 12 core 8-64GB RAM PCIe 4.0
BOARD_NAME="Cix-ACPI"
BOARDFAMILY="cix-p1"
KERNEL_TARGET="2025-Q4"
FULL_DESKTOP="yes"
BOOT_LOGO="desktop"
BOARD_MAINTAINER="HeyMeco"
MODULES_BLACKLIST="mali_kbase" # Use Panthor instead but have Mali in the kernel
declare -g BOARD_FIRMWARE_INSTALL="-full" # Install full firmware for V12 mali_csffw.bin

function post_family_tweaks__cix_acpi_mesa_backports() {
display_alert "Installing mesa-vulkan-drivers from backports" "cix-acpi" "info"

# Only install on Debian Trixie
if [[ "${RELEASE}" == "trixie" && "${DISTRIBUTION}" == "Debian" ]]; then
# Update mesa from backports
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why don't we deal with mesa in the mesa extension?

# Note: trixie-backports is already configured by Armbian
chroot_sdcard_apt_get install -t trixie-backports mesa-vulkan-drivers

display_alert "mesa-vulkan-drivers installed from trixie-backports" "cix-acpi" "info"
else
display_alert "Skipping mesa-vulkan-drivers backports install (not Debian Trixie)" "${RELEASE}" "warn"
fi
}
Loading