All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] packagegroup-arago-base-tisdk-server-extra: Fix mmap and hyplnk llds
@ 2015-11-03 19:57 Jacob Stiffler
  2015-11-03 19:57 ` [PATCH 2/2] packagegroup-arago-tisdk-addons-sdk-target: " Jacob Stiffler
  0 siblings, 1 reply; 2+ messages in thread
From: Jacob Stiffler @ 2015-11-03 19:57 UTC (permalink / raw)
  To: meta-arago

* mmap-lld and hyplnk are only supported on k2hk-evm and k2e-evm

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroup-arago-base-tisdk-server-extra.bb       | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

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 6040879..dfb5712 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
@@ -1,7 +1,7 @@
 DESCRIPTION = "Additional packages beyond console packages shared by TI SDKs"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-PR = "r3"
+PR = "r4"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -105,11 +105,9 @@ ARAGO_TI_KEYSTONE_PKGS = "\
     traceframework \
     cuia \
     libnl-xfrm \
-    mmap-lld \
     udma \
     cuia \
     edma3-lld \
-    hyplnk-lld \
     srss-tc \
     "
 
@@ -124,9 +122,16 @@ ARAGO_TI_PKGS_append_k2l-evm = "\
     iqn2-lld \
     "
 
-#ARAGO_TI_PKGS_append_k2hk-evm = "\
-#    srio-lld \
-#    "
+ARAGO_TI_PKGS_append_k2hk-evm = "\
+    srio-lld \
+    mmap-lld \
+    hyplnk-lld \
+    "
+
+ARAGO_TI_PKGS_append_k2e-evm = "\
+    mmap-lld \
+    hyplnk-lld \
+    "
 
 RDEPENDS_${PN} = "\
     ${ARAGO_LIBNL} \
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH 2/2] packagegroup-arago-tisdk-addons-sdk-target: Fix mmap and hyplnk llds
  2015-11-03 19:57 [PATCH 1/2] packagegroup-arago-base-tisdk-server-extra: Fix mmap and hyplnk llds Jacob Stiffler
@ 2015-11-03 19:57 ` Jacob Stiffler
  0 siblings, 0 replies; 2+ messages in thread
From: Jacob Stiffler @ 2015-11-03 19:57 UTC (permalink / raw)
  To: meta-arago

* mmap-lld and hyplnk are only supported on k2hk-evm and k2e-evm

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroup-arago-tisdk-addons-sdk-target.bb       | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
index a87082d..044894f 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install headers and libraries related to addons into the SDK"
 LICENSE = "MIT"
-PR = "r13"
+PR = "r14"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -47,8 +47,6 @@ EXTRA_LIBS_append_keystone = "\
 	pa-lld-staticdev \
 	rm-lld-dev \
 	rm-lld-staticdev \
-	hyplnk-lld-dev \
-	hyplnk-lld-staticdev \
 	sa-lld-dev \
 	sa-lld-staticdev \
 	hplib-dev \
@@ -57,8 +55,6 @@ EXTRA_LIBS_append_keystone = "\
 	nwal-lld-staticdev \
 	pktlib-dev \
 	pktlib-staticdev \
-	mmap-lld \
-	mmap-lld-staticdev \
 	netapi-dev \
 	netapi-staticdev \
 	ipsecmgr-dev \
@@ -93,8 +89,19 @@ EXTRA_LIBS_append_k2hk-evm = "\
 	srio-lld-staticdev \
 	ipc-transport-srio-dev \
 	ipc-transport-srio-staticdev \
+	mmap-lld \
+	mmap-lld-staticdev \
+	hyplnk-lld-dev \
+	hyplnk-lld-staticdev \
 	"
 
+EXTRA_LIBS_append_k2e-evm = "\
+	mmap-lld \
+	mmap-lld-staticdev \
+	hyplnk-lld-dev \
+	hyplnk-lld-staticdev \
+"
+
 UTILS_append_omap3 = " canutils-dev"
 UTILS_append_ti33x = " canutils-dev"
 UTILS_append_ti43x = " canutils-dev"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-03 19:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-03 19:57 [PATCH 1/2] packagegroup-arago-base-tisdk-server-extra: Fix mmap and hyplnk llds Jacob Stiffler
2015-11-03 19:57 ` [PATCH 2/2] packagegroup-arago-tisdk-addons-sdk-target: " Jacob Stiffler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.