summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Davis <afd@ti.com>2025-10-02 08:54:53 -0500
committerRyan Eatmon <reatmon@ti.com>2025-10-12 16:09:28 -0500
commitc8c3142da3517745c28232b4c910988235c721b0 (patch)
treedd1956ee86699818427c26b42e549d4b89e1ee3c
parent9e0fdb560ba2486e5c54744cf48ed7b1c2de944a (diff)
downloadmeta-ti-c8c3142da3517745c28232b4c910988235c721b0.tar.gz
meta-ti-extras: dsptop: Explicitly allow build for AM57x
This recipe builds and runs fine on both DRA7x and AM57x machines. The COMPATIBLE_MACHINE is set to just DRA7x, but this was okay as AM57x machines also set themselves as DRA7x family devices. The issue is then we cannot then differentiate between packages that are actually DRA7x- only and those that just use that family to mean both machine types. To fix this when we mean both are allowed use "omap-a15" as done here. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb2
-rw-r--r--meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb2
-rw-r--r--meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb2
3 files changed, 3 insertions, 3 deletions
diff --git a/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb b/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb
index c82f6071..a4bf95f2 100644
--- a/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb
+++ b/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb
@@ -8,7 +8,7 @@ S = "${WORKDIR}/git/debugss_module/debugss-mod"
8 8
9inherit module 9inherit module
10 10
11COMPATIBLE_MACHINE = "dra7xx" 11COMPATIBLE_MACHINE = "omap-a15"
12 12
13EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" 13EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}"
14 14
diff --git a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb
index 22111cf7..6d87c5ef 100644
--- a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb
+++ b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb
@@ -8,7 +8,7 @@ PR = "${INC_PR}.2"
8 8
9S = "${WORKDIR}/git/dsptop" 9S = "${WORKDIR}/git/dsptop"
10 10
11COMPATIBLE_MACHINE = "dra7xx" 11COMPATIBLE_MACHINE = "omap-a15"
12 12
13EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}"" 13EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}""
14 14
diff --git a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
index 3365ed07..c253fc09 100644
--- a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
+++ b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
@@ -11,7 +11,7 @@ PR = "${INC_PR}.0"
11 11
12S = "${WORKDIR}/git/dsptop/ulm" 12S = "${WORKDIR}/git/dsptop/ulm"
13 13
14COMPATIBLE_MACHINE = "dra7xx" 14COMPATIBLE_MACHINE = "omap-a15"
15 15
16EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX}" 16EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX}"
17 17