diff options
| author | Ryan Eatmon <reatmon@ti.com> | 2025-12-17 16:33:55 -0600 |
|---|---|---|
| committer | Ryan Eatmon <reatmon@ti.com> | 2025-12-19 18:19:33 -0600 |
| commit | af5cd635101a6857c0c0a50cd259d789db657827 (patch) | |
| tree | a12c4a4445cbc3ea7b5998a3f56f46c5662138c2 | |
| parent | 79a612afd9a72ffa25ccff7f224f3ec78f2fdb40 (diff) | |
| download | meta-ti-af5cd635101a6857c0c0a50cd259d789db657827.tar.gz | |
am62xx-evm-k3r5: Centralize the k3r5 settings
Since we are going to be effectively duplicating most of the what k3r5
does for the k3r5-falcon builds, we need to have the same settings. But
we cannot just include the am62xx-evm-k3r5.conf as a starting point
since it sets somethings we do not want.
Solution is to pull all of the common settings out into an include files
and just include it in both flows.
This commit just does this for the existing k3r5 build so that the
upcoming k3r5-falcon change can use it.
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
| -rw-r--r-- | meta-ti-bsp/conf/machine/am62xx-evm-k3r5.conf | 16 | ||||
| -rw-r--r-- | meta-ti-bsp/conf/machine/include/am62xx-k3r5.inc | 14 |
2 files changed, 15 insertions, 15 deletions
diff --git a/meta-ti-bsp/conf/machine/am62xx-evm-k3r5.conf b/meta-ti-bsp/conf/machine/am62xx-evm-k3r5.conf index bb713a82..80e369d8 100644 --- a/meta-ti-bsp/conf/machine/am62xx-evm-k3r5.conf +++ b/meta-ti-bsp/conf/machine/am62xx-evm-k3r5.conf | |||
| @@ -3,18 +3,4 @@ | |||
| 3 | #@DESCRIPTION: Machine configuration for the TI AM62xx EVM (R5F core) | 3 | #@DESCRIPTION: Machine configuration for the TI AM62xx EVM (R5F core) |
| 4 | 4 | ||
| 5 | require conf/machine/include/k3r5.inc | 5 | require conf/machine/include/k3r5.inc |
| 6 | 6 | require conf/machine/include/am62xx-k3r5.inc | |
| 7 | UBOOT_TEST_BUILD_CONFIGS ?= "usbdfu" | ||
| 8 | UBOOT_TEST_BUILD_CONFIGS:bsp-ti-6_6 = "" | ||
| 9 | UBOOT_TEST_BUILD_CONFIGS:bsp-next = "" | ||
| 10 | UBOOT_TEST_BUILD_CONFIGS:bsp-mainline = "" | ||
| 11 | |||
| 12 | UBOOT_MACHINE = "am62x_evm_r5_defconfig" | ||
| 13 | UBOOT_MACHINE:tie-test-builds = "" | ||
| 14 | |||
| 15 | UBOOT_CONFIG = "" | ||
| 16 | UBOOT_CONFIG:tie-test-builds = "${UBOOT_TEST_BUILD_CONFIGS} main" | ||
| 17 | UBOOT_CONFIG[main] = "am62x_evm_r5_defconfig" | ||
| 18 | UBOOT_CONFIG[usbdfu] = "am62x_evm_r5_usbdfu_defconfig" | ||
| 19 | |||
| 20 | UBOOT_CONFIG_FRAGMENTS:ti-falcon = "k3_r5_falcon.config" | ||
diff --git a/meta-ti-bsp/conf/machine/include/am62xx-k3r5.inc b/meta-ti-bsp/conf/machine/include/am62xx-k3r5.inc new file mode 100644 index 00000000..900cfad9 --- /dev/null +++ b/meta-ti-bsp/conf/machine/include/am62xx-k3r5.inc | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | UBOOT_TEST_BUILD_CONFIGS ?= "usbdfu" | ||
| 2 | UBOOT_TEST_BUILD_CONFIGS:bsp-ti-6_6 = "" | ||
| 3 | UBOOT_TEST_BUILD_CONFIGS:bsp-next = "" | ||
| 4 | UBOOT_TEST_BUILD_CONFIGS:bsp-mainline = "" | ||
| 5 | |||
| 6 | UBOOT_MACHINE = "am62x_evm_r5_defconfig" | ||
| 7 | UBOOT_MACHINE:tie-test-builds = "" | ||
| 8 | |||
| 9 | UBOOT_CONFIG = "" | ||
| 10 | UBOOT_CONFIG:tie-test-builds = "${UBOOT_TEST_BUILD_CONFIGS} main" | ||
| 11 | UBOOT_CONFIG[main] = "am62x_evm_r5_defconfig" | ||
| 12 | UBOOT_CONFIG[usbdfu] = "am62x_evm_r5_usbdfu_defconfig" | ||
| 13 | |||
| 14 | UBOOT_CONFIG_FRAGMENTS:ti-falcon = "k3_r5_falcon.config" | ||
