26 lines
918 B
Plaintext
26 lines
918 B
Plaintext
source "${BASH_SOURCE%/*}/include/rockchip64_common.inc"
|
|
|
|
# Disable uboot compilation; this board boots from HK stuff in SPI first.
|
|
# We apply a bootscript, and use GPT partitions, so HK-stuff-in-SPI loads our boot.scr.
|
|
unset BOOTSOURCE
|
|
BOOTCONFIG="none" # This is patched on top of HK's defconfig, disabling SPI-NOR MTD, so we can boot from SD/eMMC directly
|
|
BOOTSCRIPT='boot-rockchip64-vendor.cmd:boot.cmd' # Use ramaddr_r for loading fdt and armbianEnv; more flexible with overlays
|
|
|
|
LINUXFAMILY="rk3568-odroid" # a separate family for this (separate kernel deb)
|
|
LINUXCONFIG='linux-rk3568-odroid-'$BRANCH
|
|
EXTRAWIFI="no"
|
|
WIREGUARD="no"
|
|
SKIP_BOOTSPLASH="yes"
|
|
|
|
case $BRANCH in
|
|
|
|
edge)
|
|
export KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel (for armbian-next)
|
|
KERNELBRANCH='tag:v6.1-rc5'
|
|
KERNELPATCHDIR='archive/odroidm1-6.1'
|
|
;;
|
|
|
|
esac
|
|
|
|
prepare_boot_configuration
|