mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-05-30 12:30:14 +00:00
8bd3600046
This patch introduces the Total Compute platform. It adds support for the TC0 platform to the Android Common Kernel and allows building all binaries needed to run Android on TC0. It adds patches specific to TC0 for TF-A, SCP and U-Boot. Change-Id: Ia83b79571c7381967c7449db031e3177b1990546 Signed-off-by: Teo Couprie Diaz <teo.coupriediaz@arm.com> Signed-off-by: Usama Arif <usama.arif@arm.com> Reviewed-by: Diego Sueiro <diego.sueiro@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
28 lines
648 B
Plaintext
28 lines
648 B
Plaintext
# Configuration for TC0
|
|
|
|
#@TYPE: Machine
|
|
#@NAME: TC0
|
|
#@DESCRIPTION: Machine configuration for TC0
|
|
|
|
TUNE_FEATURES = "aarch64"
|
|
|
|
require conf/machine/include/arm/arch-armv8a.inc
|
|
|
|
# Das U-boot
|
|
UBOOT_MACHINE ?= "total_compute_defconfig"
|
|
|
|
# Trusted firmware A v2.3
|
|
PREFERRED_PROVIDER_virtual/trusted-firmware-a ?= "trusted-firmware-a"
|
|
PREFERRED_VERSION_trusted-firmware-a ?= "2.3%"
|
|
|
|
EXTRA_IMAGEDEPENDS += "virtual/trusted-firmware-a"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-arm64-ack"
|
|
|
|
# Cannot use the default zImage on arm64
|
|
KERNEL_IMAGETYPE = "Image"
|
|
KERNEL_BOOTCMD = "booti"
|
|
IMAGE_FSTYPES += "cpio.gz.u-boot"
|
|
|
|
SERIAL_CONSOLES = "115200;ttyAMA0"
|