armbian-build/config/sources/families/rk35xx.conf
Jianfeng Liu dad2d913f1
change rk35xx edge to 5.17.y (#3614)
Co-authored-by: Jianfeng Liu <jfliu@zshield.net>
2022-04-01 21:11:55 -07:00

40 lines
905 B
Plaintext

source "${BASH_SOURCE%/*}/include/rockchip64_common.inc"
BOOTSOURCE='https://github.com/radxa/u-boot.git'
BOOTBRANCH='branch:stable-4.19-rock3'
BOOTPATCHDIR="u-boot-rk35xx"
OVERLAY_PREFIX='rk35xx'
case $BRANCH in
legacy)
UBOOT_COMPILER="aarch64-linux-gnu-"
UBOOT_USE_GCC='< 8.0'
BOOTDIR='u-boot-rockchip64'
KERNELSOURCE='https://github.com/radxa/kernel'
KERNELBRANCH='branch:stable-4.19-rock3'
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)
KERNELBRANCH="branch:linux-5.17.y"
KERNELPATCHDIR='rk35xx-'$BRANCH
SKIP_BOOTSPLASH="yes"
LINUXFAMILY=rk35xx
LINUXCONFIG='linux-rk35xx-'$BRANCH
;;
esac
prepare_boot_configuration
family_tweaks_bsp()
{
:
}