Message ID | 20250303150807.495886-1-afd@ti.com |
---|---|
State | Accepted |
Delegated to: | Ryan Eatmon |
Headers | show |
Series | [meta-arago,scarthgap/master] packagegroups: Do not set package arch when unneeded | expand |
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk-server-extra.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk-server-extra.bb index 891449b7..f203ff20 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk-server-extra.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk-server-extra.bb @@ -3,8 +3,6 @@ LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" PR = "r17" -PACKAGE_ARCH = "${MACHINE_ARCH}" - inherit packagegroup ARAGO_LIBNL = "\ diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto-sdk-target.bb index ff72c007..74cbe90f 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto-sdk-target.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto-sdk-target.bb @@ -2,8 +2,6 @@ DESCRIPTION = "Task to install crypto dev packages in SDK" LICENSE = "MIT" PR = "r8" -PACKAGE_ARCH = "${MACHINE_ARCH}" - inherit packagegroup CRYPTO_API = "cryptodev-module-dev" diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto.bb index ec30942b..249ee9a3 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-crypto.bb @@ -2,8 +2,6 @@ DESCRIPTION = "Task to install crypto packages into target FS" LICENSE = "MIT" PR = "r13" -PACKAGE_ARCH = "${MACHINE_ARCH}" - inherit packagegroup CRYPTO_SUPPORT = "\ diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk-sdk-target.bb index 030583e3..f9fca526 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk-sdk-target.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk-sdk-target.bb @@ -2,8 +2,6 @@ DESCRIPTION = "Task to install Gtk dev packages in SDK" LICENSE = "MIT" PR = "r2" -PACKAGE_ARCH = "${MACHINE_ARCH}" - inherit packagegroup RDEPENDS:${PN} = "\ diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk.bb index c2208380..cd6dd895 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-gtk.bb @@ -2,8 +2,6 @@ DESCRIPTION = "Task to add Gtk embedded related packages" LICENSE = "MIT" PR = "r2" -PACKAGE_ARCH = "${MACHINE_ARCH}" - inherit packagegroup RDEPENDS:${PN} = "\
These package groups do not change based on the machine, do not set PACKAGE_ARCH as that forces these to be built for every machine anyway. Signed-off-by: Andrew Davis <afd@ti.com> --- .../packagegroups/packagegroup-arago-base-tisdk-server-extra.bb | 2 -- .../packagegroups/packagegroup-arago-tisdk-crypto-sdk-target.bb | 2 -- .../packagegroups/packagegroup-arago-tisdk-crypto.bb | 2 -- .../packagegroups/packagegroup-arago-tisdk-gtk-sdk-target.bb | 2 -- .../recipes-core/packagegroups/packagegroup-arago-tisdk-gtk.bb | 2 -- 5 files changed, 10 deletions(-)