27 lines
690 B
Plaintext
27 lines
690 B
Plaintext
|
#
|
||
|
# 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/
|
||
|
#
|
||
|
source "${BASH_SOURCE%/*}/include/rockchip64_common.inc"
|
||
|
|
||
|
LINUXFAMILY="rk3568-odroid" # a separate family for this (separate kernel deb)
|
||
|
LINUXCONFIG='linux-rk3568-odroid-'$BRANCH
|
||
|
WIREGUARD="no"
|
||
|
SKIP_BOOTSPLASH="yes"
|
||
|
|
||
|
case $BRANCH in
|
||
|
|
||
|
edge)
|
||
|
declare -g KERNEL_MAJOR_MINOR="6.5" # Major and minor versions of this kernel (for armbian-next)
|
||
|
declare -g KERNELBRANCH='branch:linux-6.5.y'
|
||
|
KERNELPATCHDIR='archive/rk3568-odroid-6.5' # patches for overlays et al
|
||
|
;;
|
||
|
|
||
|
esac
|
||
|
|
||
|
prepare_boot_configuration
|