mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-21 03:58:58 +00:00
Clean up the logic of the new ti-core-initramfs to reduce the impact on downstream layers. - Flip the logic in the machine .conf files to track the list of required kernel modules for that platform, but if the variable is set to "" then the ti-core-initramfs will not be created. - Redo the logic of when we require creation/usage of the initramfs to just platforms that need it (ie that set TI_CORE_INITRAMFS_KERNEL_MODULES). - Add a big switch to disable the initramfs entirely. In that case, the user is on their own to make sure that the kernel has everything it needs to boot either via config fragments to turn on the needed modules, or by using the TI_CORE_INITRAMFS_KERNEL_MODULES variable to populate their own initramfs. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
18 lines
502 B
PHP
18 lines
502 B
PHP
require conf/machine/include/k3.inc
|
|
require conf/machine/include/mc_k3r5.inc
|
|
|
|
SOC_FAMILY:append = ":am62axx"
|
|
|
|
MACHINE_FEATURES += "screen touchscreen"
|
|
|
|
TFA_K3_SYSTEM_SUSPEND = "1"
|
|
|
|
TFA_BOARD = "lite"
|
|
OPTEEMACHINE = "k3-am62x"
|
|
|
|
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "cnm-wave-fw"
|
|
|
|
TI_CORE_INITRAMFS_KERNEL_MODULES = "kernel-module-tps6594-i2c kernel-module-tps6594-regulator kernel-module-tps6594-core"
|
|
TI_CORE_INITRAMFS_KERNEL_MODULES:bsp-ti-6_6 = ""
|
|
TI_CORE_INITRAMFS_KERNEL_MODULES:bsp-ti-6_12 = ""
|