* Move all legacy u-boot patches under one general legacy folder * Move 32b Rockchip under 2022.04 and legacy for Miqi Tested * Move Rock 3A patch dir under legacy * Move / merge meson64 patch folder into v2022.07 Merge 2022.04 (mainly Rockchip 32) into 2022.07, tested * Remove not needed patch * Add last kernel version to config
40 lines
780 B
Plaintext
40 lines
780 B
Plaintext
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://github.com/radxa/kernel'
|
|
KERNELBRANCH='branch:stable-4.19-rock3'
|
|
KERNELDIR='linux-rockchip64'
|
|
KERNELPATCHDIR='rk35xx-legacy'
|
|
if [[ $BOARD == rock-3a ]]; then
|
|
BOOT_FDT_FILE="rockchip/rk3568-rock-3-a.dtb"
|
|
fi
|
|
|
|
;;
|
|
|
|
# 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() {
|
|
:
|
|
}
|