2016-04-12 22:01:47 -07:00
|
|
|
################################################################################
|
|
|
|
# setup system defaults
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# The TARGET_CPU variable controls which processor should be targeted for
|
|
|
|
# generated code.
|
|
|
|
case $TARGET_ARCH in
|
|
|
|
aarch64)
|
|
|
|
TARGET_CPU="cortex-a53"
|
|
|
|
TARGET_CPU_FLAGS="+crc+crypto"
|
|
|
|
;;
|
|
|
|
arm)
|
|
|
|
TARGET_KERNEL_ARCH="arm64"
|
|
|
|
TARGET_FLOAT="hard"
|
|
|
|
TARGET_CPU="cortex-a53"
|
|
|
|
TARGET_CPU_FLAGS="+crc"
|
|
|
|
TARGET_FPU="crypto-neon-fp-armv8"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Kernel target
|
|
|
|
KERNEL_TARGET="Image"
|
|
|
|
|
2019-07-04 10:16:20 -07:00
|
|
|
# U-Boot firmware package(s) to use
|
2021-01-02 08:41:09 +00:00
|
|
|
UBOOT_FIRMWARE="atf crust"
|
2019-07-04 10:16:20 -07:00
|
|
|
|
2016-04-12 22:01:47 -07:00
|
|
|
# ATF platform
|
|
|
|
ATF_PLATFORM="sun50i_h6"
|
|
|
|
|
2019-11-11 15:18:59 +01:00
|
|
|
# OpenGL-ES implementation to use (no / bcm2835-driver / gpu-viv-bin-mx6q)
|
|
|
|
OPENGLES="mesa"
|
|
|
|
|
|
|
|
# KODI Player implementation to use (default / bcm2835-driver / libfslvpuwrap)
|
|
|
|
KODIPLAYER_DRIVER="$OPENGLES"
|
2020-06-14 20:41:49 +02:00
|
|
|
|
|
|
|
# set the addon project
|
|
|
|
ADDON_PROJECT="ARMv8"
|
2022-10-07 21:21:01 +02:00
|
|
|
|
|
|
|
# additional kernel parameters
|
2022-10-15 17:06:33 +02:00
|
|
|
EXTRA_CMDLINE="$EXTRA_CMDLINE"
|