summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2025-12-17 16:33:55 -0600
committerRyan Eatmon <reatmon@ti.com>2025-12-19 18:19:33 -0600
commitaf5cd635101a6857c0c0a50cd259d789db657827 (patch)
treea12c4a4445cbc3ea7b5998a3f56f46c5662138c2
parent79a612afd9a72ffa25ccff7f224f3ec78f2fdb40 (diff)
downloadmeta-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.conf16
-rw-r--r--meta-ti-bsp/conf/machine/include/am62xx-k3r5.inc14
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
5require conf/machine/include/k3r5.inc 5require conf/machine/include/k3r5.inc
6 6require conf/machine/include/am62xx-k3r5.inc
7UBOOT_TEST_BUILD_CONFIGS ?= "usbdfu"
8UBOOT_TEST_BUILD_CONFIGS:bsp-ti-6_6 = ""
9UBOOT_TEST_BUILD_CONFIGS:bsp-next = ""
10UBOOT_TEST_BUILD_CONFIGS:bsp-mainline = ""
11
12UBOOT_MACHINE = "am62x_evm_r5_defconfig"
13UBOOT_MACHINE:tie-test-builds = ""
14
15UBOOT_CONFIG = ""
16UBOOT_CONFIG:tie-test-builds = "${UBOOT_TEST_BUILD_CONFIGS} main"
17UBOOT_CONFIG[main] = "am62x_evm_r5_defconfig"
18UBOOT_CONFIG[usbdfu] = "am62x_evm_r5_usbdfu_defconfig"
19
20UBOOT_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 @@
1UBOOT_TEST_BUILD_CONFIGS ?= "usbdfu"
2UBOOT_TEST_BUILD_CONFIGS:bsp-ti-6_6 = ""
3UBOOT_TEST_BUILD_CONFIGS:bsp-next = ""
4UBOOT_TEST_BUILD_CONFIGS:bsp-mainline = ""
5
6UBOOT_MACHINE = "am62x_evm_r5_defconfig"
7UBOOT_MACHINE:tie-test-builds = ""
8
9UBOOT_CONFIG = ""
10UBOOT_CONFIG:tie-test-builds = "${UBOOT_TEST_BUILD_CONFIGS} main"
11UBOOT_CONFIG[main] = "am62x_evm_r5_defconfig"
12UBOOT_CONFIG[usbdfu] = "am62x_evm_r5_usbdfu_defconfig"
13
14UBOOT_CONFIG_FRAGMENTS:ti-falcon = "k3_r5_falcon.config"