blob: f7a1cfa88f67c3faed19a5142a5bdd055668e2dc [file] [log] [blame]
Brad Bishopbec4ebc2022-08-03 09:55:16 -04001TUNE_FEATURES = "aarch64"
2
3require conf/machine/include/arm/arch-armv8a.inc
4
5MACHINEOVERRIDES =. "tc:"
6
7# Das U-boot
8UBOOT_MACHINE ?= "total_compute_defconfig"
9PREFERRED_VERSION_u-boot ?= "2022.04"
10UBOOT_RD_LOADADDRESS = "0x88000000"
11UBOOT_RD_ENTRYPOINT = "0x88000000"
12UBOOT_LOADADDRESS = "0x80080000"
13UBOOT_ENTRYPOINT = "0x80080000"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040014
15PREFERRED_PROVIDER_virtual/kernel ?= "linux-arm64-ack"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040016
17# OP-TEE
Patrick Williams8dd68482022-10-04 07:57:18 -050018PREFERRED_VERSION_optee-os ?= "3.18%"
19PREFERRED_VERSION_optee-client ?= "3.18%"
20PREFERRED_VERSION_optee-test ?= "3.18%"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040021
22# Cannot use the default zImage on arm64
23KERNEL_IMAGETYPE = "Image"
24KERNEL_IMAGETYPES += "fitImage"
25KERNEL_CLASSES = " kernel-fitimage "
26
27IMAGE_FSTYPES += "cpio.gz"
28INITRAMFS_IMAGE ?= "core-image-minimal"
29
30SERIAL_CONSOLES = "115200;ttyAMA0"
Patrick Williams8e7b46e2023-05-01 14:19:06 -050031
32EXTRA_IMAGEDEPENDS += "trusted-firmware-a optee-os"
33# FIXME - there is signed image dependency/race with testimage.
34# This should be fixed in oe-core
35TESTIMAGEDEPENDS:append = " virtual/kernel:do_deploy"