mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-25 05:59:06 +00:00
Instead of making kernel RDEPENDS on devicetree and different FW images with lots of machine-override appends that are hard to modify downstream, use proper MACHINE_ESSENTIAL_EXTRA_RDEPENDS and MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS vars that are specifically designed for this purpose. This also makes such dependencies generic and not tied to a particular kernel recipe including kernel-rdepends.inc with the entire machine-specific list. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Acked-by: Andrew Davis <afd@ti.com> Acked-by: Ryan Eatmon <reatmon@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
30 lines
745 B
PHP
30 lines
745 B
PHP
require conf/machine/include/k3.inc
|
|
SOC_FAMILY:append = ":am65xx"
|
|
|
|
MACHINE_FEATURES += "screen touchscreen gpu"
|
|
|
|
require conf/machine/include/mesa-pvr.inc
|
|
PREFERRED_PROVIDER_virtual/gpudriver ?= "ti-sgx-ddk-km"
|
|
|
|
KERNEL_DEVICETREE_PREFIX = "ti/k3-am654"
|
|
|
|
KERNEL_DEVICETREE = " \
|
|
ti/k3-am654-base-board.dtb \
|
|
"
|
|
|
|
IMAGE_BOOT_FILES += "sysfw.itb"
|
|
|
|
# Default on AM65x is for GP
|
|
IMAGE_BOOT_FILES += "tiboot3-am65x_sr2-gp-evm.bin"
|
|
IMAGE_BOOT_FILES += "sysfw-am65x_sr2-gp-evm.itb"
|
|
|
|
# Since default on AM65x is for GP, add a version for HS-SE
|
|
IMAGE_BOOT_FILES += "tiboot3-am65x_sr2-hs-evm.bin"
|
|
IMAGE_BOOT_FILES += "sysfw-am65x_sr2-hs-evm.itb"
|
|
|
|
TFA_BOARD = "generic"
|
|
|
|
OPTEEMACHINE = "k3-am65x"
|
|
|
|
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "prueth-fw-am65x"
|