-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathcix-acpi.conf
More file actions
24 lines (21 loc) · 970 Bytes
/
cix-acpi.conf
File metadata and controls
24 lines (21 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Cix CD8180/CD8160 SoC 12 core 8-64GB RAM PCIe 4.0
BOARD_NAME="Cix-ACPI"
BOARDFAMILY="cix-p1"
KERNEL_TARGET="vendor"
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
# 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
}