mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-22 12:39:02 +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>
25 lines
704 B
PHP
25 lines
704 B
PHP
require conf/machine/include/k3.inc
|
|
SOC_FAMILY:append = ":am64xx"
|
|
|
|
KERNEL_DEVICETREE_PREFIX = "ti/k3-am642"
|
|
|
|
KERNEL_DEVICETREE = " \
|
|
ti/k3-am642-evm.dtb \
|
|
ti/k3-am642-sk.dtb \
|
|
"
|
|
|
|
# Default tiboot3.bin on AM64x is for SR2.0 HS-FS
|
|
IMAGE_BOOT_FILES += "tiboot3-am64x_sr2-hs-fs-evm.bin"
|
|
|
|
# Since default tiboot3.bin on AM64x is for SR2.0 HS-FS, add a version for GP
|
|
IMAGE_BOOT_FILES += "tiboot3-am64x-gp-evm.bin"
|
|
|
|
# Since default tiboot3.bin on AM64x is for SR2.0 HS-FS, add a version for SR2.0 HS-SE
|
|
IMAGE_BOOT_FILES += "tiboot3-am64x_sr2-hs-evm.bin"
|
|
|
|
TFA_BOARD = "lite"
|
|
|
|
OPTEEMACHINE = "k3-am64x"
|
|
|
|
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "prueth-fw-am65x-sr2 pruhsr-fw-am65x-sr2 prusw-fw-am65x-sr2"
|