Add support for Radxa Orion O6

This commit is contained in:
Muhammed Efe Cetin 2025-06-25 20:54:29 +03:00
parent b27c86e620
commit bffe300bd0
No known key found for this signature in database
GPG Key ID: 0AA4D45CBAA86F73
3 changed files with 1220 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# Cix CD8180 SoC 12 core 8-64GB SoC 2* 5GBe USB3 NvME WIFI
BOARD_NAME="Orion O6"
BOARDFAMILY="cix"
KERNEL_TARGET="vendor"
FULL_DESKTOP="yes"
BOOT_LOGO="desktop"
IMAGE_PARTITION_TABLE="gpt"
BOARD_MAINTAINER=""
BOOT_FDT_FILE="cix/sky1-orion-o6.dtb"

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,42 @@
#
# SPDX-License-Identifier: GPL-2.0
#
# Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
#
# This file is a part of the Armbian Build Framework
# https://github.com/armbian/build/
#
declare -g LINUXFAMILY="cix"
declare -g OVERLAY_DIR="/boot/dtb/cix/overlay"
declare -g OVERLAY_PREFIX='cix'
declare -g ARCH="arm64"
declare -g GOVERNOR="ondemand"
declare -g BOOTCONFIG="none"
declare -g LINUXCONFIG="linux-${LINUXFAMILY}-${BRANCH}"
declare -g UEFI_GRUB_TERMINAL="gfxterm"
declare -g GRUB_CMDLINE_LINUX_DEFAULT="console=ttyAMA2,115200 efi=noruntime earlycon=pl011,0x040d0000 arm-smmu-v3.disable_bypass=0 acpi=off"
declare -g UEFI_GRUB_TIMEOUT=3 # GRUB menu timeout
declare -g SERIALCON="ttyAMA2" # Serial console for GRUB
declare -g IMAGE_PARTITION_TABLE="gpt"
enable_extension "grub-with-dtb"
case $BRANCH in
vendor)
KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel.
KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo
KERNELSOURCE='https://github.com/armbian/linux-cix.git'
KERNELBRANCH='branch:cix-6.1-gpu'
KERNELPATCHDIR='cix-vendor-6.1'
LINUXFAMILY=cix
;;
esac
family_tweaks_bsp() {
:
}