* Support edge kernel for Rock 3A and rk35xx * Removing patch email headers There is also some script floating around to do this automatically when pooling from patchwork * Update rk356x-usb2-support.patch * Remove email headers * Remove email headers * Remove email headers * Update config and change edge branch * Enable edge beta build * Refresh the rk35xx patches and update the dts Remove also previous wireless patches related to IPX removal * Removing hirsute target deprecated Co-authored-by: Catalin Toda <catalinii@yahoo.com> Co-authored-by: Igor Pečovnik <igorpecovnik@users.noreply.github.com> Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
38 lines
829 B
Plaintext
38 lines
829 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
|
|
edge)
|
|
KERNELBRANCH="branch:linux-5.16.y"
|
|
KERNELPATCHDIR='rk35xx-'$BRANCH
|
|
SKIP_BOOTSPLASH="yes"
|
|
LINUXCONFIG='linux-rk35xx-'$BRANCH
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
prepare_boot_configuration
|
|
|
|
family_tweaks_bsp()
|
|
{
|
|
:
|
|
}
|