mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-27 19:37:04 +00:00
e74b3c2f24
Change-Id: Ie3014bdb07dc4f9e6ba28750fda7b5408fb7508a Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
#@TYPE: Machine
|
|
#@NAME: Corstone-500 machine
|
|
#@DESCRIPTION: Machine configuration for the Corstone-500 platform
|
|
|
|
require conf/machine/include/tune-cortexa5.inc
|
|
|
|
#
|
|
# Corstone-500 is built against poky-tiny distro.
|
|
# poky-tiny sets PREFERRED_PROVIDER_virtual/kernel to linux-yocto-tiny.
|
|
# Since distro config is evaluated after the machine config, we need to
|
|
# use the strongest override possible (forcevariable) so the
|
|
# PREFERRED_PROVIDER_virtual/kernel specified in the machine config will
|
|
# apply.
|
|
#
|
|
PREFERRED_PROVIDER_virtual/kernel_forcevariable = "linux-yocto"
|
|
PREFERRED_VERSION_linux-yocto ?= "5.3%"
|
|
KBUILD_DEFCONFIG = "multi_v7_defconfig"
|
|
KCONFIG_MODE = "--alldefconfig"
|
|
|
|
PREFERRED_VERSION_trusted-firmware-a ?= "2.4%"
|
|
|
|
EXTRA_IMAGEDEPENDS += "virtual/trusted-firmware-a u-boot"
|
|
|
|
SERIAL_CONSOLES = "115200;ttyAMA0"
|
|
|
|
IMAGE_FSTYPES += "tar.bz2 cpio.gz"
|
|
|
|
# Corstone-500 u-boot configuration
|
|
UBOOT_MACHINE = "designstart_ca5_defconfig"
|
|
UBOOT_IMAGE_ENTRYPOINT = "0x84000000"
|
|
UBOOT_IMAGE_LOADADDRESS = "0x84000000"
|
|
PREFERRED_VERSION_u-boot ?= "2020.07" |