diff options
author | Andrew Davis <afd@ti.com> | 2023-01-20 01:40:46 +0000 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2023-01-24 12:51:24 -0600 |
commit | f5653ce0ae0675449315a3350859f8fc2c93f530 (patch) | |
tree | 62ab1d6cd6070d51da60257866b14ae32399e406 /meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc | |
parent | 7cd8114bb0f646225fd4cafc3c699a73caa6dc0e (diff) | |
download | meta-ti-f5653ce0ae0675449315a3350859f8fc2c93f530.tar.gz |
conf: machine: Use new J7 SoC names over specific board names
Now that we have SoC names, we can avoid adding features based on the
board name. We expect folks to create their own boards based on these
SoCs, and so using the TI made EVM board name everywhere adds extra churn
when adding a new board. Plus it is more correct for most of these
features as they depend on the SoC, not on the EVM board.
One other thing we do here is to not use the generic "j7" name,
the current and future J7 devices are far to feature diverse
to group at this level. Grouping like that will lead to the wrong
things getting enabled as new J7 SoCs are added.
Signed-off-by: Andrew Davis <afd@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc')
-rw-r--r-- | meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc index d87dcbe1..5f2ca279 100644 --- a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc +++ b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc | |||
@@ -32,7 +32,10 @@ PACKAGECONFIG[optee] = "TEE=${STAGING_DIR_HOST}${nonarch_base_libdir}/firmware/b | |||
32 | PACKAGECONFIG[dm] = "DM=${STAGING_DIR_HOST}${nonarch_base_libdir}/firmware/pdk-ipc/${DM_FIRMWARE},,ti-rtos-firmware" | 32 | PACKAGECONFIG[dm] = "DM=${STAGING_DIR_HOST}${nonarch_base_libdir}/firmware/pdk-ipc/${DM_FIRMWARE},,ti-rtos-firmware" |
33 | 33 | ||
34 | PACKAGECONFIG:append:aarch64 = " atf optee" | 34 | PACKAGECONFIG:append:aarch64 = " atf optee" |
35 | PACKAGECONFIG:append:j7 = " dm" | 35 | PACKAGECONFIG:append:j721e = " dm" |
36 | PACKAGECONFIG:append:j7200 = " dm" | ||
37 | PACKAGECONFIG:append:j721s2 = " dm" | ||
38 | PACKAGECONFIG:append:j784s4 = " dm" | ||
36 | PACKAGECONFIG:append:am62xx = " dm" | 39 | PACKAGECONFIG:append:am62xx = " dm" |
37 | 40 | ||
38 | COMPATIBLE_MACHINE = "(ti-soc)" | 41 | COMPATIBLE_MACHINE = "(ti-soc)" |