From patchwork Thu Oct 2 13:54:50 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Davis X-Patchwork-Id: 71553 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03AF7CAC5B0 for ; Thu, 2 Oct 2025 13:54:58 +0000 (UTC) Received: from lelvem-ot02.ext.ti.com (lelvem-ot02.ext.ti.com [198.47.23.235]) by mx.groups.io with SMTP id smtpd.web10.9267.1759413296485441769 for ; Thu, 02 Oct 2025 06:54:56 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=J0UNLnkN; spf=pass (domain: ti.com, ip: 198.47.23.235, mailfrom: afd@ti.com) Received: from fllvem-sh04.itg.ti.com ([10.64.41.54]) by lelvem-ot02.ext.ti.com (8.15.2/8.15.2) with ESMTP id 592Dstii3348614; Thu, 2 Oct 2025 08:54:55 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1759413295; bh=/WN92GFdy5ZPTgYzjqGqy+sHWL+ifeUsn/MnURhOzkQ=; h=From:To:CC:Subject:Date; b=J0UNLnkNfCjgVKxAUs7dCmVfFwcA3enx8413YzL78joVkEsG9nBl79JinrhQYU3R1 Vcpd9KHk9xeXf1hVU6lTchUA0Oi/yZYN+dWg9in4P4pkYJvhLu7QtHbx7kPieV/EyF aozRuz75npqZgzHLEPMYPHXiJT8POMOFYsDDGzks= Received: from DFLE109.ent.ti.com (dfle109.ent.ti.com [10.64.6.30]) by fllvem-sh04.itg.ti.com (8.18.1/8.18.1) with ESMTPS id 592Dst4j1273494 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA256 bits=128 verify=FAIL); Thu, 2 Oct 2025 08:54:55 -0500 Received: from DFLE213.ent.ti.com (10.64.6.71) by DFLE109.ent.ti.com (10.64.6.30) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.55; Thu, 2 Oct 2025 08:54:55 -0500 Received: from lelvem-mr05.itg.ti.com (10.180.75.9) by DFLE213.ent.ti.com (10.64.6.71) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.2562.20 via Frontend Transport; Thu, 2 Oct 2025 08:54:55 -0500 Received: from localhost.localdomain ([10.249.42.149]) by lelvem-mr05.itg.ti.com (8.18.1/8.18.1) with ESMTP id 592Dsssw2179255; Thu, 2 Oct 2025 08:54:54 -0500 From: Andrew Davis To: Denys Dmytriyenko , Ryan Eatmon , CC: Andrew Davis Subject: [meta-ti][scarthgap/master][PATCH 1/4] meta-ti-extras: gdbc6x: Simplify for DRA7xx only build Date: Thu, 2 Oct 2025 08:54:50 -0500 Message-ID: <20251002135453.1820662-1-afd@ti.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 X-C2ProcessedOrg: 333ef613-75bf-4e12-a4b1-8e3623f5dcea List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 02 Oct 2025 13:54:58 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/19094 This recipe is already only compatible with the DRA7xx machine, so no need to set PLATFORM based on the only possibility. This then allows us to directly set the compile flags for the same. And now that the package does not change based on the machine, remove the PACKAGE_ARCH line. Signed-off-by: Andrew Davis --- .../recipes-devtools/gdbc6x/gdbserver-c6x_git.bb | 8 ++------ .../gdbc6x/gdbserverproxy-module-drv_git.bb | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb index 6c538817..c73fb031 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb @@ -8,10 +8,9 @@ PR = "${INC_PR}.0" S:append = "/gdbserver-c6x/src" -PLATFORM = "" -PLATFORM:dra7xx = "DRA7xx_PLATFORM" +COMPATIBLE_MACHINE = "dra7xx" -EXTRA_OEMAKE = "PLATFORM=${PLATFORM}" +EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM" export XDAIS_DIR = "${XDAIS_INSTALL_DIR}" export FC_DIR = "${FC_INSTALL_DIR}" @@ -33,9 +32,6 @@ do_install() { cp -f ../lib/* ${D}${datadir}/ti/gdbc6x/lib } -COMPATIBLE_MACHINE = "dra7xx" -PACKAGE_ARCH = "${MACHINE_ARCH}" - FILES:${PN}-dev += "\ ${datadir}/ti/gdbc6x \ " diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb index 2ee97269..fcca0bbe 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb @@ -13,10 +13,9 @@ S:append = "/kernel_module/gdbproxy-mod" inherit module -PLATFORM = "" -PLATFORM:dra7xx = "DRA7xx_PLATFORM" +COMPATIBLE_MACHINE = "dra7xx" -EXTRA_OEMAKE = "PLATFORM=${PLATFORM} KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" +EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" # The following is to prevent an unused configure.ac from erroneously # triggering the QA check for gettext. @@ -25,9 +24,6 @@ do_configure() { : } -COMPATIBLE_MACHINE = "dra7xx" -PACKAGE_ARCH = "${MACHINE_ARCH}" - include gdbc6x.inc KERNEL_MODULE_AUTOLOAD += "gdbserverproxy" From patchwork Thu Oct 2 13:54:51 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Davis X-Patchwork-Id: 71554 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03B30CCA471 for ; Thu, 2 Oct 2025 13:54:58 +0000 (UTC) Received: from fllvem-ot03.ext.ti.com (fllvem-ot03.ext.ti.com [198.47.19.245]) by mx.groups.io with SMTP id smtpd.web10.9268.1759413296905389683 for ; Thu, 02 Oct 2025 06:54:57 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=VMWe2D/+; spf=pass (domain: ti.com, ip: 198.47.19.245, mailfrom: afd@ti.com) Received: from lelvem-sh02.itg.ti.com ([10.180.78.226]) by fllvem-ot03.ext.ti.com (8.15.2/8.15.2) with ESMTP id 592Dst2A2843174; Thu, 2 Oct 2025 08:54:55 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1759413295; bh=jlYnYIijmeeVdTplqBopTP1XarC9kQeIKoAp16/CD44=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=VMWe2D/+vJ9u/uaOfktBuryiB5QYRiLWS7AZ5YSMqwmsSLJotTQxq9tS8OkXT42ZF SCh+GwfgtNIVRVPgLtkbzXeWWOSGQV7AH5TUKsSzpAnB04fjS1hLhbNF8a4UiYrcGW zXTgd2zgBmxneLaIEgARjesCqbm/iQwOi64gd6Q0= Received: from DLEE213.ent.ti.com (dlee213.ent.ti.com [157.170.170.116]) by lelvem-sh02.itg.ti.com (8.18.1/8.18.1) with ESMTPS id 592DstCV062283 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 2 Oct 2025 08:54:55 -0500 Received: from DLEE206.ent.ti.com (157.170.170.90) by DLEE213.ent.ti.com (157.170.170.116) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.2562.20; Thu, 2 Oct 2025 08:54:55 -0500 Received: from lelvem-mr05.itg.ti.com (10.180.75.9) by DLEE206.ent.ti.com (157.170.170.90) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.2562.20 via Frontend Transport; Thu, 2 Oct 2025 08:54:55 -0500 Received: from localhost.localdomain ([10.249.42.149]) by lelvem-mr05.itg.ti.com (8.18.1/8.18.1) with ESMTP id 592Dsssx2179255; Thu, 2 Oct 2025 08:54:55 -0500 From: Andrew Davis To: Denys Dmytriyenko , Ryan Eatmon , CC: Andrew Davis Subject: [meta-ti][scarthgap/master][PATCH 2/4] meta-ti-extras: dsptop: Simplify for DRA7xx only build Date: Thu, 2 Oct 2025 08:54:51 -0500 Message-ID: <20251002135453.1820662-2-afd@ti.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20251002135453.1820662-1-afd@ti.com> References: <20251002135453.1820662-1-afd@ti.com> MIME-Version: 1.0 X-C2ProcessedOrg: 333ef613-75bf-4e12-a4b1-8e3623f5dcea List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 02 Oct 2025 13:54:58 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/19095 This recipe is already only compatible with the DRA7xx machine, so no need to set PLATFORM based on the only possibility. This then allows us to directly set the compile flags for the same. And now that the package does not change based on the machine, remove the PACKAGE_ARCH line. Signed-off-by: Andrew Davis --- .../recipes-bsp/dsptop/debugss-module-drv_git.bb | 8 ++------ meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb | 8 ++------ meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb | 8 ++------ 3 files changed, 6 insertions(+), 18 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 d8e759d9..262ffc9f 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,13 +8,9 @@ S:append = "/debugss_module/debugss-mod" inherit module -PLATFORM = "" -PLATFORM:dra7xx = "DRA7xx_PLATFORM" - -EXTRA_OEMAKE = "'PLATFORM=${PLATFORM}' KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" - COMPATIBLE_MACHINE = "dra7xx" -PACKAGE_ARCH = "${MACHINE_ARCH}" + +EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" include dsptop.inc diff --git a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb index 5e8c56b8..8d36e76f 100644 --- a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb +++ b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb @@ -8,19 +8,15 @@ PR = "${INC_PR}.2" S:append = "/dsptop" -DEVICE = "" -DEVICE:dra7xx = "DRA7xx" +COMPATIBLE_MACHINE = "dra7xx" -EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}"" +EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}"" do_install() { oe_runmake install DESTDIR=${D} chown -R root:root ${D} } -COMPATIBLE_MACHINE = "dra7xx" -PACKAGE_ARCH = "${MACHINE_ARCH}" - RDEPENDS:${PN} = "debugss-module-drv bash" include dsptop.inc diff --git a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb index 73c7831e..61d9c7f9 100644 --- a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb +++ b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb @@ -11,10 +11,9 @@ PR = "${INC_PR}.0" S:append = "/dsptop/ulm" -DEVICE = "" -DEVICE:dra7xx = "DRA7xx" +COMPATIBLE_MACHINE = "dra7xx" -EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}" +EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX}" do_compile() { oe_runmake arm XPORT_ONLY CC="${CC}" @@ -31,9 +30,6 @@ do_install() { cp -f release/libtiulm.ae66 ${D}${datadir}/ti/ulm } -COMPATIBLE_MACHINE = "dra7xx" -PACKAGE_ARCH = "${MACHINE_ARCH}" - FILES:${PN}-dev += "\ ${datadir}/ti/ulm \ " From patchwork Thu Oct 2 13:54:52 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Davis X-Patchwork-Id: 71556 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 08777CCD183 for ; Thu, 2 Oct 2025 13:54:58 +0000 (UTC) Received: from fllvem-ot04.ext.ti.com (fllvem-ot04.ext.ti.com [198.47.19.246]) by mx.groups.io with SMTP id smtpd.web10.9269.1759413297083752990 for ; Thu, 02 Oct 2025 06:54:57 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=f/ly0cvF; spf=pass (domain: ti.com, ip: 198.47.19.246, mailfrom: afd@ti.com) Received: from lelvem-sh02.itg.ti.com ([10.180.78.226]) by fllvem-ot04.ext.ti.com (8.15.2/8.15.2) with ESMTP id 592Dst5U3296989; Thu, 2 Oct 2025 08:54:55 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1759413295; bh=XI00/20W7PzGgDemsJBEavW+Y3Rujz92wHYEO+GsWio=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=f/ly0cvFjmvQhxQvTWmETOYVJTxITvQ/zHi1+f6K/dLXj6AK2j1uAkJ3oECJ6RQLQ ynjrFkj21tayba/E+fYMDHn4nprqcXFvuAdGB7em391/h9+C/hTs5eZEjyAoASPdCl 8UODqvKmSEAEEmicO+DVKWvyWHslp1yjY1QaHV1s= Received: from DLEE209.ent.ti.com (dlee209.ent.ti.com [157.170.170.98]) by lelvem-sh02.itg.ti.com (8.18.1/8.18.1) with ESMTPS id 592Dstek062286 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 2 Oct 2025 08:54:55 -0500 Received: from DLEE204.ent.ti.com (157.170.170.84) by DLEE209.ent.ti.com (157.170.170.98) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.2562.20; Thu, 2 Oct 2025 08:54:55 -0500 Received: from lelvem-mr05.itg.ti.com (10.180.75.9) by DLEE204.ent.ti.com (157.170.170.84) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.2562.20 via Frontend Transport; Thu, 2 Oct 2025 08:54:55 -0500 Received: from localhost.localdomain ([10.249.42.149]) by lelvem-mr05.itg.ti.com (8.18.1/8.18.1) with ESMTP id 592Dsst02179255; Thu, 2 Oct 2025 08:54:55 -0500 From: Andrew Davis To: Denys Dmytriyenko , Ryan Eatmon , CC: Andrew Davis Subject: [meta-ti][scarthgap/master][PATCH 3/4] meta-ti-extras: gdbc6x: Explicitly allow build for AM57x Date: Thu, 2 Oct 2025 08:54:52 -0500 Message-ID: <20251002135453.1820662-3-afd@ti.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20251002135453.1820662-1-afd@ti.com> References: <20251002135453.1820662-1-afd@ti.com> MIME-Version: 1.0 X-C2ProcessedOrg: 333ef613-75bf-4e12-a4b1-8e3623f5dcea List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 02 Oct 2025 13:54:58 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/19096 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 --- meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | 2 +- meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb | 2 +- .../recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb index b803ac5b..3e6dfbff 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://debian/copyright;md5=bf0fe2872eb3dfeebb2cbe38206fe81f DEPENDS = "ncurses bison-native texinfo flex-native gettext" -COMPATIBLE_MACHINE = "dra7xx" +COMPATIBLE_MACHINE = "omap-a15" PR = "${INC_PR}.1" diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb index c73fb031..a2d8da75 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb @@ -8,7 +8,7 @@ PR = "${INC_PR}.0" S:append = "/gdbserver-c6x/src" -COMPATIBLE_MACHINE = "dra7xx" +COMPATIBLE_MACHINE = "omap-a15" EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM" diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb index fcca0bbe..1e4fd6c5 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb @@ -13,7 +13,7 @@ S:append = "/kernel_module/gdbproxy-mod" inherit module -COMPATIBLE_MACHINE = "dra7xx" +COMPATIBLE_MACHINE = "omap-a15" EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" From patchwork Thu Oct 2 13:54:53 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Davis X-Patchwork-Id: 71555 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1145ECAC5B8 for ; Thu, 2 Oct 2025 13:54:58 +0000 (UTC) Received: from fllvem-ot04.ext.ti.com (fllvem-ot04.ext.ti.com [198.47.19.246]) by mx.groups.io with SMTP id smtpd.web11.9612.1759413297408438864 for ; Thu, 02 Oct 2025 06:54:57 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=qTFedXeo; spf=pass (domain: ti.com, ip: 198.47.19.246, mailfrom: afd@ti.com) Received: from fllvem-sh04.itg.ti.com ([10.64.41.54]) by fllvem-ot04.ext.ti.com (8.15.2/8.15.2) with ESMTP id 592DsuAU3296993; Thu, 2 Oct 2025 08:54:56 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1759413296; bh=nC6lZXAiL06UbkOiz8ufwOO+ZK2ddl3OQZ/BIElWUdA=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=qTFedXeoXTKc2ahfxONgoWE/9lT5rWq/y6XFhnF1AIFvJ1gXKqLX7ohT7bw7fWgPh rS8czZAeKX5JyNfjhAZ8DVbYDmlvDEMh7NJ7HacNZF6izntfsUEH1h9xDrgSfBrprE r9BH7osOx+jeKScgJyeSSVpzxR0PYTZ295ynFz5k= Received: from DLEE211.ent.ti.com (dlee211.ent.ti.com [157.170.170.113]) by fllvem-sh04.itg.ti.com (8.18.1/8.18.1) with ESMTPS id 592Dsur41273497 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 2 Oct 2025 08:54:56 -0500 Received: from DLEE207.ent.ti.com (157.170.170.95) by DLEE211.ent.ti.com (157.170.170.113) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.2562.20; Thu, 2 Oct 2025 08:54:55 -0500 Received: from lelvem-mr05.itg.ti.com (10.180.75.9) by DLEE207.ent.ti.com (157.170.170.95) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.2562.20 via Frontend Transport; Thu, 2 Oct 2025 08:54:55 -0500 Received: from localhost.localdomain ([10.249.42.149]) by lelvem-mr05.itg.ti.com (8.18.1/8.18.1) with ESMTP id 592Dsst12179255; Thu, 2 Oct 2025 08:54:55 -0500 From: Andrew Davis To: Denys Dmytriyenko , Ryan Eatmon , CC: Andrew Davis Subject: [meta-ti][scarthgap/master][PATCH 4/4] meta-ti-extras: dsptop: Explicitly allow build for AM57x Date: Thu, 2 Oct 2025 08:54:53 -0500 Message-ID: <20251002135453.1820662-4-afd@ti.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20251002135453.1820662-1-afd@ti.com> References: <20251002135453.1820662-1-afd@ti.com> MIME-Version: 1.0 X-C2ProcessedOrg: 333ef613-75bf-4e12-a4b1-8e3623f5dcea List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 02 Oct 2025 13:54:58 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/19097 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 --- meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb | 2 +- meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb | 2 +- meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb | 2 +- 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 262ffc9f..fdb16ec4 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:append = "/debugss_module/debugss-mod" inherit module -COMPATIBLE_MACHINE = "dra7xx" +COMPATIBLE_MACHINE = "omap-a15" EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" diff --git a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb index 8d36e76f..c1080468 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" S:append = "/dsptop" -COMPATIBLE_MACHINE = "dra7xx" +COMPATIBLE_MACHINE = "omap-a15" EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}"" diff --git a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb index 61d9c7f9..1bcaa0ea 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" S:append = "/dsptop/ulm" -COMPATIBLE_MACHINE = "dra7xx" +COMPATIBLE_MACHINE = "omap-a15" EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX}"