Files
build/config/sources/families/rk35xx.conf
Igor Pečovnik b7b8eb7b72 Add / modify (c) in bash scripts (#4922)
* Add / modify (c) in bash scripts

Signed-off-by: Igor <igor@armbian.com>

* Add (c) to the source config files

---------

Signed-off-by: Igor <igor@armbian.com>
2023-03-09 18:30:40 +01:00

45 lines
974 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"
BOOTSOURCE='https://github.com/radxa/u-boot.git'
BOOTBRANCH='branch:stable-4.19-rock3'
BOOTPATCHDIR="legacy"
OVERLAY_PREFIX='rk35xx'
case $BRANCH in
legacy)
UBOOT_COMPILER="aarch64-linux-gnu-"
UBOOT_USE_GCC='< 8.0'
BOOTDIR='u-boot-rockchip64'
KERNELSOURCE='https://gitlab.com/rk3588_linux/rk/kernel.git'
KERNELBRANCH='tag:linux-5.10-gen-rkr3.6'
export KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel.
KERNELDIR='linux-rockchip64'
KERNELPATCHDIR='rk35xx-legacy'
;;
# temporary until kernel 5.16 is well supported for rockchip64
# it has to be its own family too
edge)
SKIP_BOOTSPLASH="yes"
LINUXFAMILY=rk35xx
;;
esac
prepare_boot_configuration
family_tweaks_bsp() {
:
}