All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
@ 2015-11-25 22:07 Sam Nelson
  2015-11-25 22:07 ` [PATCH 2/2] multiprocmgr: Update to new version 3.0.0.0 Sam Nelson
  2015-11-25 22:16 ` [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0 Denys Dmytriyenko
  0 siblings, 2 replies; 10+ messages in thread
From: Sam Nelson @ 2015-11-25 22:07 UTC (permalink / raw)
  To: meta-ti

- Updates to work with kernel version 4.1 and other uio driver changes
- Making the package machine specific and hence the dependencies
according to the platform is updated
- Add use of oe_runmake instead of direct call to make

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 recipes-ti/mpm-transport/mpm-transport_git.bb | 30 ++++++++++++++++-----------
 1 file changed, 18 insertions(+), 12 deletions(-)

diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb b/recipes-ti/mpm-transport/mpm-transport_git.bb
index 752ada5..cc211ce 100644
--- a/recipes-ti/mpm-transport/mpm-transport_git.bb
+++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
@@ -3,16 +3,27 @@ HOMEPAGE = "http://git.ti.com/cgit/cgit.cgi/keystone-linux/mpm-transport.git"
 LICENSE = "BSD-3-Clause & MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
 COMPATIBLE_MACHINE = "keystone"
-DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem rm-lld qmss-lld cppi-lld srio-lld"
+
+DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld qmss-lld cppi-lld uio-module-drv syslog-ng"
+DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
+DEPENDS_append_k2e-evm += "hyplnk-lld"
+
+RDEPENDS_${PN} = "syslog-ng"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
 
 SRC_URI = "git://git.ti.com/keystone-linux/mpm-transport.git;protocol=git;branch=${BRANCH}"
 
-BRANCH = "master"
-# This commit corresponds to tag DEV.MPM-TRANSPORT-01.00.08.03
-SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
+BRANCH = "linux41"
+# This commit corresponds to tag DEV.MPM-TRANSPORT-02.00.00.00_ENG
+SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
 
-PV = "1.0.8.3"
-PR = "r1"
+PV = "2.0.0.0"
+PR = "r0"
+
+EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
+EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true SRIO_TRANSPORT=true"
+EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
 
 S = "${WORKDIR}/git"
 
@@ -25,13 +36,8 @@ FILES_${PN}-test = "${bindir}/mpm_transport_test.out \
 					${bindir}/mpm_transport_qmss_arm_mt.out \
 					${bindir}/mpm_transport_srio_arm_mt.out"
 
-do_compile () {
-	cd ${S}
-	make PDK_INSTALL_PATH=${STAGING_INCDIR}
-}
-
 do_install() {
-	make installbin BASE_DIR=${S} INSTALL_BIN_BASE_DIR=${D}/${bindir}
+	oe_runmake installbin BASE_DIR=${S} INSTALL_BIN_BASE_DIR=${D}/${bindir}
 
 	install -d ${D}${includedir}/
 	install -c -m 755 ${S}/include/* ${D}${includedir}/
-- 
1.9.1



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

* [PATCH 2/2] multiprocmgr: Update to new version 3.0.0.0
  2015-11-25 22:07 [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0 Sam Nelson
@ 2015-11-25 22:07 ` Sam Nelson
  2015-11-25 22:16 ` [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0 Denys Dmytriyenko
  1 sibling, 0 replies; 10+ messages in thread
From: Sam Nelson @ 2015-11-25 22:07 UTC (permalink / raw)
  To: meta-ti

- Update to work with kernel version 4.1 and also other uio driver
changes.

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 recipes-ti/multiprocmgr/multiprocmgr.inc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/recipes-ti/multiprocmgr/multiprocmgr.inc b/recipes-ti/multiprocmgr/multiprocmgr.inc
index d9360b5..94fa707 100644
--- a/recipes-ti/multiprocmgr/multiprocmgr.inc
+++ b/recipes-ti/multiprocmgr/multiprocmgr.inc
@@ -4,10 +4,10 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fce208c498eb9669223724dc9c1d8fe4"
 SECTION = "console"
 COMPATIBLE_MACHINE = "keystone"
 
-BRANCH = "master"
-# The following commits correspond to DEV.MPM-2.00.01.10D
-SRCREV = "4cb6009d6a3c94cea41ae6155a974e9ca44d982f"
-PV = "2.0.1.10"
+BRANCH = "linux41"
+# The following commits correspond to DEV.MPM-3.00.00.00_ENG
+SRCREV = "158e7d419662b482a089fb66ecdfced1104654ae"
+PV = "3.0.0.0"
 
 SRC_URI = "git://git.ti.com/keystone-linux/multi-proc-manager.git;protocol=git;branch=${BRANCH}"
 
-- 
1.9.1



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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-25 22:07 [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0 Sam Nelson
  2015-11-25 22:07 ` [PATCH 2/2] multiprocmgr: Update to new version 3.0.0.0 Sam Nelson
@ 2015-11-25 22:16 ` Denys Dmytriyenko
  2015-11-25 22:33   ` Nelson, Sam
  1 sibling, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2015-11-25 22:16 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-ti

On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> - Updates to work with kernel version 4.1 and other uio driver changes
> - Making the package machine specific and hence the dependencies
> according to the platform is updated
> - Add use of oe_runmake instead of direct call to make
> 
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
>  recipes-ti/mpm-transport/mpm-transport_git.bb | 30 ++++++++++++++++-----------
>  1 file changed, 18 insertions(+), 12 deletions(-)
> 
> diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb b/recipes-ti/mpm-transport/mpm-transport_git.bb
> index 752ada5..cc211ce 100644
> --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> @@ -3,16 +3,27 @@ HOMEPAGE = "http://git.ti.com/cgit/cgit.cgi/keystone-linux/mpm-transport.git"
>  LICENSE = "BSD-3-Clause & MIT"
>  LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
>  COMPATIBLE_MACHINE = "keystone"
> -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem rm-lld qmss-lld cppi-lld srio-lld"
> +
> +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld qmss-lld cppi-lld uio-module-drv syslog-ng"

http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/mmap-lld/mmap-lld.inc?h=fido#n3
Will fail for k2l and k2g...


> +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> +DEPENDS_append_k2e-evm += "hyplnk-lld"
> +
> +RDEPENDS_${PN} = "syslog-ng"
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
>  SRC_URI = "git://git.ti.com/keystone-linux/mpm-transport.git;protocol=git;branch=${BRANCH}"
>  
> -BRANCH = "master"
> -# This commit corresponds to tag DEV.MPM-TRANSPORT-01.00.08.03
> -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> +BRANCH = "linux41"
> +# This commit corresponds to tag DEV.MPM-TRANSPORT-02.00.00.00_ENG
> +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
>  
> -PV = "1.0.8.3"
> -PR = "r1"
> +PV = "2.0.0.0"
> +PR = "r0"
> +
> +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> +EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true SRIO_TRANSPORT=true"
> +EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
>  
>  S = "${WORKDIR}/git"
>  
> @@ -25,13 +36,8 @@ FILES_${PN}-test = "${bindir}/mpm_transport_test.out \
>  					${bindir}/mpm_transport_qmss_arm_mt.out \
>  					${bindir}/mpm_transport_srio_arm_mt.out"
>  
> -do_compile () {
> -	cd ${S}
> -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> -}
> -
>  do_install() {
> -	make installbin BASE_DIR=${S} INSTALL_BIN_BASE_DIR=${D}/${bindir}
> +	oe_runmake installbin BASE_DIR=${S} INSTALL_BIN_BASE_DIR=${D}/${bindir}
>  
>  	install -d ${D}${includedir}/
>  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> -- 
> 1.9.1
> 
> -- 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-25 22:16 ` [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0 Denys Dmytriyenko
@ 2015-11-25 22:33   ` Nelson, Sam
  2015-11-25 22:41     ` Denys Dmytriyenko
  0 siblings, 1 reply; 10+ messages in thread
From: Nelson, Sam @ 2015-11-25 22:33 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti



> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Wednesday, November 25, 2015 5:17 PM
> To: Nelson, Sam
> Cc: meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> 2.0.0.0
> 
> On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> > - Updates to work with kernel version 4.1 and other uio driver changes
> > - Making the package machine specific and hence the dependencies
> > according to the platform is updated
> > - Add use of oe_runmake instead of direct call to make
> >
> > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > ---
> >  recipes-ti/mpm-transport/mpm-transport_git.bb | 30
> > ++++++++++++++++-----------
> >  1 file changed, 18 insertions(+), 12 deletions(-)
> >
> > diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > index 752ada5..cc211ce 100644
> > --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > @@ -3,16 +3,27 @@ HOMEPAGE = "http://git.ti.com/cgit/cgit.cgi/keystone-
> linux/mpm-transport.git"
> >  LICENSE = "BSD-3-Clause & MIT"
> >  LIC_FILES_CHKSUM =
> "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
> >  COMPATIBLE_MACHINE = "keystone"
> > -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem rm-lld
> qmss-lld cppi-lld srio-lld"
> > +
> > +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld qmss-lld
> cppi-lld uio-module-drv syslog-ng"
> 
> http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/mmap-
> lld/mmap-lld.inc?h=fido#n3
> Will fail for k2l and k2g...
The mmap-lld recipes need to be updated to build for k2l and k2g.  My understanding is same drivers should work.
> 
> 
> > +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> > +DEPENDS_append_k2e-evm += "hyplnk-lld"
> > +
> > +RDEPENDS_${PN} = "syslog-ng"
> > +
> > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> >
> >  SRC_URI = "git://git.ti.com/keystone-linux/mpm-
> transport.git;protocol=git;branch=${BRANCH}"
> >
> > -BRANCH = "master"
> > -# This commit corresponds to tag DEV.MPM-TRANSPORT-01.00.08.03
> > -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> > +BRANCH = "linux41"
> > +# This commit corresponds to tag DEV.MPM-TRANSPORT-
> 02.00.00.00_ENG
> > +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
> >
> > -PV = "1.0.8.3"
> > -PR = "r1"
> > +PV = "2.0.0.0"
> > +PR = "r0"
> > +
> > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > +EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true
> SRIO_TRANSPORT=true"
> > +EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
> >
> >  S = "${WORKDIR}/git"
> >
> > @@ -25,13 +36,8 @@ FILES_${PN}-test =
> "${bindir}/mpm_transport_test.out \
> >
> 	${bindir}/mpm_transport_qmss_arm_mt.out \
> >
> 	${bindir}/mpm_transport_srio_arm_mt.out"
> >
> > -do_compile () {
> > -	cd ${S}
> > -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> > -}
> > -
> >  do_install() {
> > -	make installbin BASE_DIR=${S}
> INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > +	oe_runmake installbin BASE_DIR=${S}
> > +INSTALL_BIN_BASE_DIR=${D}/${bindir}
> >
> >  	install -d ${D}${includedir}/
> >  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> > --
> > 1.9.1
> >
> > --
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-25 22:33   ` Nelson, Sam
@ 2015-11-25 22:41     ` Denys Dmytriyenko
  2015-11-25 22:47       ` Nelson, Sam
  0 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2015-11-25 22:41 UTC (permalink / raw)
  To: Nelson, Sam; +Cc: meta-ti

On Wed, Nov 25, 2015 at 05:33:54PM -0500, Nelson, Sam wrote:
> 
> 
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Wednesday, November 25, 2015 5:17 PM
> > To: Nelson, Sam
> > Cc: meta-ti@yoctoproject.org
> > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> > 2.0.0.0
> > 
> > On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> > > - Updates to work with kernel version 4.1 and other uio driver changes
> > > - Making the package machine specific and hence the dependencies
> > > according to the platform is updated
> > > - Add use of oe_runmake instead of direct call to make
> > >
> > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > ---
> > >  recipes-ti/mpm-transport/mpm-transport_git.bb | 30
> > > ++++++++++++++++-----------
> > >  1 file changed, 18 insertions(+), 12 deletions(-)
> > >
> > > diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > index 752ada5..cc211ce 100644
> > > --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > @@ -3,16 +3,27 @@ HOMEPAGE = "http://git.ti.com/cgit/cgit.cgi/keystone-
> > linux/mpm-transport.git"
> > >  LICENSE = "BSD-3-Clause & MIT"
> > >  LIC_FILES_CHKSUM =
> > "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
> > >  COMPATIBLE_MACHINE = "keystone"
> > > -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem rm-lld
> > qmss-lld cppi-lld srio-lld"
> > > +
> > > +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld qmss-lld
> > cppi-lld uio-module-drv syslog-ng"
> > 
> > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/mmap-
> > lld/mmap-lld.inc?h=fido#n3
> > Will fail for k2l and k2g...
> The mmap-lld recipes need to be updated to build for k2l and k2g.  My understanding is same drivers should work.

Well, at least the test part has only k/h/e devices in the list:

http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/mmap-lld/mmap-lld-test_git.bb?h=fido#n11


> > > +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> > > +DEPENDS_append_k2e-evm += "hyplnk-lld"
> > > +
> > > +RDEPENDS_${PN} = "syslog-ng"
> > > +
> > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > >
> > >  SRC_URI = "git://git.ti.com/keystone-linux/mpm-
> > transport.git;protocol=git;branch=${BRANCH}"
> > >
> > > -BRANCH = "master"
> > > -# This commit corresponds to tag DEV.MPM-TRANSPORT-01.00.08.03
> > > -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> > > +BRANCH = "linux41"
> > > +# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > 02.00.00.00_ENG
> > > +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
> > >
> > > -PV = "1.0.8.3"
> > > -PR = "r1"
> > > +PV = "2.0.0.0"
> > > +PR = "r0"
> > > +
> > > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > > +EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true
> > SRIO_TRANSPORT=true"
> > > +EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
> > >
> > >  S = "${WORKDIR}/git"
> > >
> > > @@ -25,13 +36,8 @@ FILES_${PN}-test =
> > "${bindir}/mpm_transport_test.out \
> > >
> > 	${bindir}/mpm_transport_qmss_arm_mt.out \
> > >
> > 	${bindir}/mpm_transport_srio_arm_mt.out"
> > >
> > > -do_compile () {
> > > -	cd ${S}
> > > -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> > > -}
> > > -
> > >  do_install() {
> > > -	make installbin BASE_DIR=${S}
> > INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > +	oe_runmake installbin BASE_DIR=${S}
> > > +INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > >
> > >  	install -d ${D}${includedir}/
> > >  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> > > --
> > > 1.9.1
> > >
> > > --
> > > _______________________________________________
> > > meta-ti mailing list
> > > meta-ti@yoctoproject.org
> > > https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-25 22:41     ` Denys Dmytriyenko
@ 2015-11-25 22:47       ` Nelson, Sam
  2015-11-25 22:54         ` Denys Dmytriyenko
  0 siblings, 1 reply; 10+ messages in thread
From: Nelson, Sam @ 2015-11-25 22:47 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti



> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Wednesday, November 25, 2015 5:41 PM
> To: Nelson, Sam
> Cc: meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> 2.0.0.0
> 
> On Wed, Nov 25, 2015 at 05:33:54PM -0500, Nelson, Sam wrote:
> >
> >
> > > -----Original Message-----
> > > From: Dmytriyenko, Denys
> > > Sent: Wednesday, November 25, 2015 5:17 PM
> > > To: Nelson, Sam
> > > Cc: meta-ti@yoctoproject.org
> > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > version
> > > 2.0.0.0
> > >
> > > On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> > > > - Updates to work with kernel version 4.1 and other uio driver
> > > > changes
> > > > - Making the package machine specific and hence the dependencies
> > > > according to the platform is updated
> > > > - Add use of oe_runmake instead of direct call to make
> > > >
> > > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > > ---
> > > >  recipes-ti/mpm-transport/mpm-transport_git.bb | 30
> > > > ++++++++++++++++-----------
> > > >  1 file changed, 18 insertions(+), 12 deletions(-)
> > > >
> > > > diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > index 752ada5..cc211ce 100644
> > > > --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > @@ -3,16 +3,27 @@ HOMEPAGE =
> > > > "http://git.ti.com/cgit/cgit.cgi/keystone-
> > > linux/mpm-transport.git"
> > > >  LICENSE = "BSD-3-Clause & MIT"
> > > >  LIC_FILES_CHKSUM =
> > > "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
> > > >  COMPATIBLE_MACHINE = "keystone"
> > > > -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem
> > > > rm-lld
> > > qmss-lld cppi-lld srio-lld"
> > > > +
> > > > +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld qmss-lld
> > > cppi-lld uio-module-drv syslog-ng"
> > >
> > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/m
> > > map-
> > > lld/mmap-lld.inc?h=fido#n3
> > > Will fail for k2l and k2g...
> > The mmap-lld recipes need to be updated to build for k2l and k2g.  My
> understanding is same drivers should work.
> 
> Well, at least the test part has only k/h/e devices in the list:
> 
> http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/mmap-
> lld/mmap-lld-test_git.bb?h=fido#n11
Test part may need update per device. Currently hope this is not a show stopper.
> 
> 
> > > > +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> > > > +DEPENDS_append_k2e-evm += "hyplnk-lld"
> > > > +
> > > > +RDEPENDS_${PN} = "syslog-ng"
> > > > +
> > > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > >
> > > >  SRC_URI = "git://git.ti.com/keystone-linux/mpm-
> > > transport.git;protocol=git;branch=${BRANCH}"
> > > >
> > > > -BRANCH = "master"
> > > > -# This commit corresponds to tag DEV.MPM-TRANSPORT-01.00.08.03
> > > > -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> > > > +BRANCH = "linux41"
> > > > +# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > > 02.00.00.00_ENG
> > > > +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
> > > >
> > > > -PV = "1.0.8.3"
> > > > -PR = "r1"
> > > > +PV = "2.0.0.0"
> > > > +PR = "r0"
> > > > +
> > > > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > > > +EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true
> > > SRIO_TRANSPORT=true"
> > > > +EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
> > > >
> > > >  S = "${WORKDIR}/git"
> > > >
> > > > @@ -25,13 +36,8 @@ FILES_${PN}-test =
> > > "${bindir}/mpm_transport_test.out \
> > > >
> > > 	${bindir}/mpm_transport_qmss_arm_mt.out \
> > > >
> > > 	${bindir}/mpm_transport_srio_arm_mt.out"
> > > >
> > > > -do_compile () {
> > > > -	cd ${S}
> > > > -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> > > > -}
> > > > -
> > > >  do_install() {
> > > > -	make installbin BASE_DIR=${S}
> > > INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > +	oe_runmake installbin BASE_DIR=${S}
> > > > +INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > >
> > > >  	install -d ${D}${includedir}/
> > > >  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> > > > --
> > > > 1.9.1
> > > >
> > > > --
> > > > _______________________________________________
> > > > meta-ti mailing list
> > > > meta-ti@yoctoproject.org
> > > > https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-25 22:47       ` Nelson, Sam
@ 2015-11-25 22:54         ` Denys Dmytriyenko
  2015-11-25 23:16           ` Nelson, Sam
  0 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2015-11-25 22:54 UTC (permalink / raw)
  To: Nelson, Sam; +Cc: meta-ti

On Wed, Nov 25, 2015 at 05:47:53PM -0500, Nelson, Sam wrote:
> 
> 
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Wednesday, November 25, 2015 5:41 PM
> > To: Nelson, Sam
> > Cc: meta-ti@yoctoproject.org
> > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> > 2.0.0.0
> > 
> > On Wed, Nov 25, 2015 at 05:33:54PM -0500, Nelson, Sam wrote:
> > >
> > >
> > > > -----Original Message-----
> > > > From: Dmytriyenko, Denys
> > > > Sent: Wednesday, November 25, 2015 5:17 PM
> > > > To: Nelson, Sam
> > > > Cc: meta-ti@yoctoproject.org
> > > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > > version
> > > > 2.0.0.0
> > > >
> > > > On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> > > > > - Updates to work with kernel version 4.1 and other uio driver
> > > > > changes
> > > > > - Making the package machine specific and hence the dependencies
> > > > > according to the platform is updated
> > > > > - Add use of oe_runmake instead of direct call to make
> > > > >
> > > > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > > > ---
> > > > >  recipes-ti/mpm-transport/mpm-transport_git.bb | 30
> > > > > ++++++++++++++++-----------
> > > > >  1 file changed, 18 insertions(+), 12 deletions(-)
> > > > >
> > > > > diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > index 752ada5..cc211ce 100644
> > > > > --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > @@ -3,16 +3,27 @@ HOMEPAGE =
> > > > > "http://git.ti.com/cgit/cgit.cgi/keystone-
> > > > linux/mpm-transport.git"
> > > > >  LICENSE = "BSD-3-Clause & MIT"
> > > > >  LIC_FILES_CHKSUM =
> > > > "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
> > > > >  COMPATIBLE_MACHINE = "keystone"
> > > > > -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem
> > > > > rm-lld
> > > > qmss-lld cppi-lld srio-lld"
> > > > > +
> > > > > +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld qmss-lld
> > > > cppi-lld uio-module-drv syslog-ng"
> > > >
> > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/m
> > > > map-
> > > > lld/mmap-lld.inc?h=fido#n3
> > > > Will fail for k2l and k2g...
> > > The mmap-lld recipes need to be updated to build for k2l and k2g.  My
> > understanding is same drivers should work.
> > 
> > Well, at least the test part has only k/h/e devices in the list:
> > 
> > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/mmap-
> > lld/mmap-lld-test_git.bb?h=fido#n11
> Test part may need update per device. Currently hope this is not a show stopper.

So, are you saying mmap-lld can lax the restrictions in the same version? Or 
do you mean a new version is required?


> > > > > +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> > > > > +DEPENDS_append_k2e-evm += "hyplnk-lld"
> > > > > +
> > > > > +RDEPENDS_${PN} = "syslog-ng"
> > > > > +
> > > > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > > >
> > > > >  SRC_URI = "git://git.ti.com/keystone-linux/mpm-
> > > > transport.git;protocol=git;branch=${BRANCH}"
> > > > >
> > > > > -BRANCH = "master"
> > > > > -# This commit corresponds to tag DEV.MPM-TRANSPORT-01.00.08.03
> > > > > -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> > > > > +BRANCH = "linux41"
> > > > > +# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > > > 02.00.00.00_ENG
> > > > > +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
> > > > >
> > > > > -PV = "1.0.8.3"
> > > > > -PR = "r1"
> > > > > +PV = "2.0.0.0"
> > > > > +PR = "r0"
> > > > > +
> > > > > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > > > > +EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true
> > > > SRIO_TRANSPORT=true"
> > > > > +EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
> > > > >
> > > > >  S = "${WORKDIR}/git"
> > > > >
> > > > > @@ -25,13 +36,8 @@ FILES_${PN}-test =
> > > > "${bindir}/mpm_transport_test.out \
> > > > >
> > > > 	${bindir}/mpm_transport_qmss_arm_mt.out \
> > > > >
> > > > 	${bindir}/mpm_transport_srio_arm_mt.out"
> > > > >
> > > > > -do_compile () {
> > > > > -	cd ${S}
> > > > > -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> > > > > -}
> > > > > -
> > > > >  do_install() {
> > > > > -	make installbin BASE_DIR=${S}
> > > > INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > > +	oe_runmake installbin BASE_DIR=${S}
> > > > > +INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > >
> > > > >  	install -d ${D}${includedir}/
> > > > >  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> > > > > --
> > > > > 1.9.1
> > > > >
> > > > > --
> > > > > _______________________________________________
> > > > > meta-ti mailing list
> > > > > meta-ti@yoctoproject.org
> > > > > https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-25 22:54         ` Denys Dmytriyenko
@ 2015-11-25 23:16           ` Nelson, Sam
  2015-11-30 17:01             ` Denys Dmytriyenko
  0 siblings, 1 reply; 10+ messages in thread
From: Nelson, Sam @ 2015-11-25 23:16 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti



> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Wednesday, November 25, 2015 5:55 PM
> To: Nelson, Sam
> Cc: meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> 2.0.0.0
> 
> On Wed, Nov 25, 2015 at 05:47:53PM -0500, Nelson, Sam wrote:
> >
> >
> > > -----Original Message-----
> > > From: Dmytriyenko, Denys
> > > Sent: Wednesday, November 25, 2015 5:41 PM
> > > To: Nelson, Sam
> > > Cc: meta-ti@yoctoproject.org
> > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > version
> > > 2.0.0.0
> > >
> > > On Wed, Nov 25, 2015 at 05:33:54PM -0500, Nelson, Sam wrote:
> > > >
> > > >
> > > > > -----Original Message-----
> > > > > From: Dmytriyenko, Denys
> > > > > Sent: Wednesday, November 25, 2015 5:17 PM
> > > > > To: Nelson, Sam
> > > > > Cc: meta-ti@yoctoproject.org
> > > > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > > > version
> > > > > 2.0.0.0
> > > > >
> > > > > On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> > > > > > - Updates to work with kernel version 4.1 and other uio driver
> > > > > > changes
> > > > > > - Making the package machine specific and hence the
> > > > > > dependencies according to the platform is updated
> > > > > > - Add use of oe_runmake instead of direct call to make
> > > > > >
> > > > > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > > > > ---
> > > > > >  recipes-ti/mpm-transport/mpm-transport_git.bb | 30
> > > > > > ++++++++++++++++-----------
> > > > > >  1 file changed, 18 insertions(+), 12 deletions(-)
> > > > > >
> > > > > > diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > index 752ada5..cc211ce 100644
> > > > > > --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > @@ -3,16 +3,27 @@ HOMEPAGE =
> > > > > > "http://git.ti.com/cgit/cgit.cgi/keystone-
> > > > > linux/mpm-transport.git"
> > > > > >  LICENSE = "BSD-3-Clause & MIT"
> > > > > >  LIC_FILES_CHKSUM =
> > > > > "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
> > > > > >  COMPATIBLE_MACHINE = "keystone"
> > > > > > -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem
> > > > > > rm-lld
> > > > > qmss-lld cppi-lld srio-lld"
> > > > > > +
> > > > > > +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld
> > > > > > +qmss-lld
> > > > > cppi-lld uio-module-drv syslog-ng"
> > > > >
> > > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-b
> > > > > sp/m
> > > > > map-
> > > > > lld/mmap-lld.inc?h=fido#n3
> > > > > Will fail for k2l and k2g...
> > > > The mmap-lld recipes need to be updated to build for k2l and k2g.
> > > > My
> > > understanding is same drivers should work.
> > >
> > > Well, at least the test part has only k/h/e devices in the list:
> > >
> > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/m
> > > map-
> > > lld/mmap-lld-test_git.bb?h=fido#n11
> > Test part may need update per device. Currently hope this is not a show
> stopper.
> 
> So, are you saying mmap-lld can lax the restrictions in the same version? Or
> do you mean a new version is required?
> 
Same version can work. 
> 
> > > > > > +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> > > > > > +DEPENDS_append_k2e-evm += "hyplnk-lld"
> > > > > > +
> > > > > > +RDEPENDS_${PN} = "syslog-ng"
> > > > > > +
> > > > > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > > > >
> > > > > >  SRC_URI = "git://git.ti.com/keystone-linux/mpm-
> > > > > transport.git;protocol=git;branch=${BRANCH}"
> > > > > >
> > > > > > -BRANCH = "master"
> > > > > > -# This commit corresponds to tag DEV.MPM-TRANSPORT-
> 01.00.08.03
> > > > > > -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> > > > > > +BRANCH = "linux41"
> > > > > > +# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > > > > 02.00.00.00_ENG
> > > > > > +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
> > > > > >
> > > > > > -PV = "1.0.8.3"
> > > > > > -PR = "r1"
> > > > > > +PV = "2.0.0.0"
> > > > > > +PR = "r0"
> > > > > > +
> > > > > > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > > > > > +EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true
> > > > > SRIO_TRANSPORT=true"
> > > > > > +EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
> > > > > >
> > > > > >  S = "${WORKDIR}/git"
> > > > > >
> > > > > > @@ -25,13 +36,8 @@ FILES_${PN}-test =
> > > > > "${bindir}/mpm_transport_test.out \
> > > > > >
> > > > > 	${bindir}/mpm_transport_qmss_arm_mt.out \
> > > > > >
> > > > > 	${bindir}/mpm_transport_srio_arm_mt.out"
> > > > > >
> > > > > > -do_compile () {
> > > > > > -	cd ${S}
> > > > > > -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> > > > > > -}
> > > > > > -
> > > > > >  do_install() {
> > > > > > -	make installbin BASE_DIR=${S}
> > > > > INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > > > +	oe_runmake installbin BASE_DIR=${S}
> > > > > > +INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > > >
> > > > > >  	install -d ${D}${includedir}/
> > > > > >  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> > > > > > --
> > > > > > 1.9.1
> > > > > >
> > > > > > --
> > > > > > _______________________________________________
> > > > > > meta-ti mailing list
> > > > > > meta-ti@yoctoproject.org
> > > > > > https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-25 23:16           ` Nelson, Sam
@ 2015-11-30 17:01             ` Denys Dmytriyenko
  2015-11-30 17:51               ` Nelson, Sam
  0 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2015-11-30 17:01 UTC (permalink / raw)
  To: Nelson, Sam; +Cc: meta-ti

Sam,

After bunch of fixes to pull the necessary dependencies for k2g, mpm-transport 
still fails due to this:

| sharedmem/mpm_transport_sharedmem.c:44:28: fatal error: uio_module_drv.h: No such file or directory
|  #include "uio_module_drv.h"

The version of uio_module_drv we have doesn't even have the necessary header 
file:
http://git.ti.com/gitweb/?p=keystone-linux/uio-module-drv.git;a=tree

If it expects said header to be part of mpm-transport, it's not in that repo 
either:
http://git.ti.com/gitweb/?p=keystone-linux/mpm-transport.git;a=tree;h=refs/heads/linux41;hb=refs/heads/linux41

-- 
Denys


On Wed, Nov 25, 2015 at 06:16:19PM -0500, Nelson, Sam wrote:
> 
> 
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Wednesday, November 25, 2015 5:55 PM
> > To: Nelson, Sam
> > Cc: meta-ti@yoctoproject.org
> > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> > 2.0.0.0
> > 
> > On Wed, Nov 25, 2015 at 05:47:53PM -0500, Nelson, Sam wrote:
> > >
> > >
> > > > -----Original Message-----
> > > > From: Dmytriyenko, Denys
> > > > Sent: Wednesday, November 25, 2015 5:41 PM
> > > > To: Nelson, Sam
> > > > Cc: meta-ti@yoctoproject.org
> > > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > > version
> > > > 2.0.0.0
> > > >
> > > > On Wed, Nov 25, 2015 at 05:33:54PM -0500, Nelson, Sam wrote:
> > > > >
> > > > >
> > > > > > -----Original Message-----
> > > > > > From: Dmytriyenko, Denys
> > > > > > Sent: Wednesday, November 25, 2015 5:17 PM
> > > > > > To: Nelson, Sam
> > > > > > Cc: meta-ti@yoctoproject.org
> > > > > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > > > > version
> > > > > > 2.0.0.0
> > > > > >
> > > > > > On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> > > > > > > - Updates to work with kernel version 4.1 and other uio driver
> > > > > > > changes
> > > > > > > - Making the package machine specific and hence the
> > > > > > > dependencies according to the platform is updated
> > > > > > > - Add use of oe_runmake instead of direct call to make
> > > > > > >
> > > > > > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > > > > > ---
> > > > > > >  recipes-ti/mpm-transport/mpm-transport_git.bb | 30
> > > > > > > ++++++++++++++++-----------
> > > > > > >  1 file changed, 18 insertions(+), 12 deletions(-)
> > > > > > >
> > > > > > > diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > index 752ada5..cc211ce 100644
> > > > > > > --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > @@ -3,16 +3,27 @@ HOMEPAGE =
> > > > > > > "http://git.ti.com/cgit/cgit.cgi/keystone-
> > > > > > linux/mpm-transport.git"
> > > > > > >  LICENSE = "BSD-3-Clause & MIT"
> > > > > > >  LIC_FILES_CHKSUM =
> > > > > > "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
> > > > > > >  COMPATIBLE_MACHINE = "keystone"
> > > > > > > -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld cmem
> > > > > > > rm-lld
> > > > > > qmss-lld cppi-lld srio-lld"
> > > > > > > +
> > > > > > > +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld
> > > > > > > +qmss-lld
> > > > > > cppi-lld uio-module-drv syslog-ng"
> > > > > >
> > > > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-b
> > > > > > sp/m
> > > > > > map-
> > > > > > lld/mmap-lld.inc?h=fido#n3
> > > > > > Will fail for k2l and k2g...
> > > > > The mmap-lld recipes need to be updated to build for k2l and k2g.
> > > > > My
> > > > understanding is same drivers should work.
> > > >
> > > > Well, at least the test part has only k/h/e devices in the list:
> > > >
> > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/m
> > > > map-
> > > > lld/mmap-lld-test_git.bb?h=fido#n11
> > > Test part may need update per device. Currently hope this is not a show
> > stopper.
> > 
> > So, are you saying mmap-lld can lax the restrictions in the same version? Or
> > do you mean a new version is required?
> > 
> Same version can work. 
> > 
> > > > > > > +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> > > > > > > +DEPENDS_append_k2e-evm += "hyplnk-lld"
> > > > > > > +
> > > > > > > +RDEPENDS_${PN} = "syslog-ng"
> > > > > > > +
> > > > > > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > > > > >
> > > > > > >  SRC_URI = "git://git.ti.com/keystone-linux/mpm-
> > > > > > transport.git;protocol=git;branch=${BRANCH}"
> > > > > > >
> > > > > > > -BRANCH = "master"
> > > > > > > -# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > 01.00.08.03
> > > > > > > -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> > > > > > > +BRANCH = "linux41"
> > > > > > > +# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > > > > > 02.00.00.00_ENG
> > > > > > > +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
> > > > > > >
> > > > > > > -PV = "1.0.8.3"
> > > > > > > -PR = "r1"
> > > > > > > +PV = "2.0.0.0"
> > > > > > > +PR = "r0"
> > > > > > > +
> > > > > > > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > > > > > > +EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true
> > > > > > SRIO_TRANSPORT=true"
> > > > > > > +EXTRA_OEMAKE_append_k2e-evm += "HYPLNK_TRANSPORT=true"
> > > > > > >
> > > > > > >  S = "${WORKDIR}/git"
> > > > > > >
> > > > > > > @@ -25,13 +36,8 @@ FILES_${PN}-test =
> > > > > > "${bindir}/mpm_transport_test.out \
> > > > > > >
> > > > > > 	${bindir}/mpm_transport_qmss_arm_mt.out \
> > > > > > >
> > > > > > 	${bindir}/mpm_transport_srio_arm_mt.out"
> > > > > > >
> > > > > > > -do_compile () {
> > > > > > > -	cd ${S}
> > > > > > > -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> > > > > > > -}
> > > > > > > -
> > > > > > >  do_install() {
> > > > > > > -	make installbin BASE_DIR=${S}
> > > > > > INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > > > > +	oe_runmake installbin BASE_DIR=${S}
> > > > > > > +INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > > > >
> > > > > > >  	install -d ${D}${includedir}/
> > > > > > >  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> > > > > > > --
> > > > > > > 1.9.1
> > > > > > >
> > > > > > > --
> > > > > > > _______________________________________________
> > > > > > > meta-ti mailing list
> > > > > > > meta-ti@yoctoproject.org
> > > > > > > https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0
  2015-11-30 17:01             ` Denys Dmytriyenko
@ 2015-11-30 17:51               ` Nelson, Sam
  0 siblings, 0 replies; 10+ messages in thread
From: Nelson, Sam @ 2015-11-30 17:51 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti

This needs update to uio-module-drv as well. I will send update to uio-module-drv.
Sorry I missed.
Sam

> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Monday, November 30, 2015 12:02 PM
> To: Nelson, Sam
> Cc: meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> 2.0.0.0
> 
> Sam,
> 
> After bunch of fixes to pull the necessary dependencies for k2g, mpm-
> transport still fails due to this:
> 
> | sharedmem/mpm_transport_sharedmem.c:44:28: fatal error:
> | uio_module_drv.h: No such file or directory  #include "uio_module_drv.h"
> 
> The version of uio_module_drv we have doesn't even have the necessary
> header
> file:
> http://git.ti.com/gitweb/?p=keystone-linux/uio-module-drv.git;a=tree
> 
> If it expects said header to be part of mpm-transport, it's not in that repo
> either:
> http://git.ti.com/gitweb/?p=keystone-linux/mpm-
> transport.git;a=tree;h=refs/heads/linux41;hb=refs/heads/linux41
> 
> --
> Denys
> 
> 
> On Wed, Nov 25, 2015 at 06:16:19PM -0500, Nelson, Sam wrote:
> >
> >
> > > -----Original Message-----
> > > From: Dmytriyenko, Denys
> > > Sent: Wednesday, November 25, 2015 5:55 PM
> > > To: Nelson, Sam
> > > Cc: meta-ti@yoctoproject.org
> > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new version
> > > 2.0.0.0
> > >
> > > On Wed, Nov 25, 2015 at 05:47:53PM -0500, Nelson, Sam wrote:
> > > >
> > > >
> > > > > -----Original Message-----
> > > > > From: Dmytriyenko, Denys
> > > > > Sent: Wednesday, November 25, 2015 5:41 PM
> > > > > To: Nelson, Sam
> > > > > Cc: meta-ti@yoctoproject.org
> > > > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > > > version
> > > > > 2.0.0.0
> > > > >
> > > > > On Wed, Nov 25, 2015 at 05:33:54PM -0500, Nelson, Sam wrote:
> > > > > >
> > > > > >
> > > > > > > -----Original Message-----
> > > > > > > From: Dmytriyenko, Denys
> > > > > > > Sent: Wednesday, November 25, 2015 5:17 PM
> > > > > > > To: Nelson, Sam
> > > > > > > Cc: meta-ti@yoctoproject.org
> > > > > > > Subject: Re: [meta-ti] [PATCH 1/2] mpm-transport: Update to new
> > > > > > > version
> > > > > > > 2.0.0.0
> > > > > > >
> > > > > > > On Wed, Nov 25, 2015 at 05:07:22PM -0500, Sam Nelson wrote:
> > > > > > > > - Updates to work with kernel version 4.1 and other uio driver
> > > > > > > > changes
> > > > > > > > - Making the package machine specific and hence the
> > > > > > > > dependencies according to the platform is updated
> > > > > > > > - Add use of oe_runmake instead of direct call to make
> > > > > > > >
> > > > > > > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > > > > > > ---
> > > > > > > >  recipes-ti/mpm-transport/mpm-transport_git.bb | 30
> > > > > > > > ++++++++++++++++-----------
> > > > > > > >  1 file changed, 18 insertions(+), 12 deletions(-)
> > > > > > > >
> > > > > > > > diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > > b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > > index 752ada5..cc211ce 100644
> > > > > > > > --- a/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > > +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb
> > > > > > > > @@ -3,16 +3,27 @@ HOMEPAGE =
> > > > > > > > "http://git.ti.com/cgit/cgit.cgi/keystone-
> > > > > > > linux/mpm-transport.git"
> > > > > > > >  LICENSE = "BSD-3-Clause & MIT"
> > > > > > > >  LIC_FILES_CHKSUM =
> > > > > > > "file://LICENSE.txt;md5=122b7757f366f3f6fe11988715258fc9"
> > > > > > > >  COMPATIBLE_MACHINE = "keystone"
> > > > > > > > -DEPENDS = "common-csl-ip hyplnk-lld edma3-lld mmap-lld
> cmem
> > > > > > > > rm-lld
> > > > > > > qmss-lld cppi-lld srio-lld"
> > > > > > > > +
> > > > > > > > +DEPENDS = "common-csl-ip edma3-lld mmap-lld cmem rm-lld
> > > > > > > > +qmss-lld
> > > > > > > cppi-lld uio-module-drv syslog-ng"
> > > > > > >
> > > > > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-b
> > > > > > > sp/m
> > > > > > > map-
> > > > > > > lld/mmap-lld.inc?h=fido#n3
> > > > > > > Will fail for k2l and k2g...
> > > > > > The mmap-lld recipes need to be updated to build for k2l and k2g.
> > > > > > My
> > > > > understanding is same drivers should work.
> > > > >
> > > > > Well, at least the test part has only k/h/e devices in the list:
> > > > >
> > > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-bsp/m
> > > > > map-
> > > > > lld/mmap-lld-test_git.bb?h=fido#n11
> > > > Test part may need update per device. Currently hope this is not a show
> > > stopper.
> > >
> > > So, are you saying mmap-lld can lax the restrictions in the same version?
> Or
> > > do you mean a new version is required?
> > >
> > Same version can work.
> > >
> > > > > > > > +DEPENDS_append_k2hk-evm += "hyplnk-lld srio-lld"
> > > > > > > > +DEPENDS_append_k2e-evm += "hyplnk-lld"
> > > > > > > > +
> > > > > > > > +RDEPENDS_${PN} = "syslog-ng"
> > > > > > > > +
> > > > > > > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > > > > > >
> > > > > > > >  SRC_URI = "git://git.ti.com/keystone-linux/mpm-
> > > > > > > transport.git;protocol=git;branch=${BRANCH}"
> > > > > > > >
> > > > > > > > -BRANCH = "master"
> > > > > > > > -# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > > 01.00.08.03
> > > > > > > > -SRCREV = "f6c5426d68c2be832903b6d215370c94e134167f"
> > > > > > > > +BRANCH = "linux41"
> > > > > > > > +# This commit corresponds to tag DEV.MPM-TRANSPORT-
> > > > > > > 02.00.00.00_ENG
> > > > > > > > +SRCREV = "892e93238b7f9f480ddceb7ade042026a4d178bd"
> > > > > > > >
> > > > > > > > -PV = "1.0.8.3"
> > > > > > > > -PR = "r1"
> > > > > > > > +PV = "2.0.0.0"
> > > > > > > > +PR = "r0"
> > > > > > > > +
> > > > > > > > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > > > > > > > +EXTRA_OEMAKE_append_k2hk-evm +=
> "HYPLNK_TRANSPORT=true
> > > > > > > SRIO_TRANSPORT=true"
> > > > > > > > +EXTRA_OEMAKE_append_k2e-evm +=
> "HYPLNK_TRANSPORT=true"
> > > > > > > >
> > > > > > > >  S = "${WORKDIR}/git"
> > > > > > > >
> > > > > > > > @@ -25,13 +36,8 @@ FILES_${PN}-test =
> > > > > > > "${bindir}/mpm_transport_test.out \
> > > > > > > >
> > > > > > > 	${bindir}/mpm_transport_qmss_arm_mt.out \
> > > > > > > >
> > > > > > > 	${bindir}/mpm_transport_srio_arm_mt.out"
> > > > > > > >
> > > > > > > > -do_compile () {
> > > > > > > > -	cd ${S}
> > > > > > > > -	make PDK_INSTALL_PATH=${STAGING_INCDIR}
> > > > > > > > -}
> > > > > > > > -
> > > > > > > >  do_install() {
> > > > > > > > -	make installbin BASE_DIR=${S}
> > > > > > > INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > > > > > +	oe_runmake installbin BASE_DIR=${S}
> > > > > > > > +INSTALL_BIN_BASE_DIR=${D}/${bindir}
> > > > > > > >
> > > > > > > >  	install -d ${D}${includedir}/
> > > > > > > >  	install -c -m 755 ${S}/include/* ${D}${includedir}/
> > > > > > > > --
> > > > > > > > 1.9.1
> > > > > > > >
> > > > > > > > --
> > > > > > > > _______________________________________________
> > > > > > > > meta-ti mailing list
> > > > > > > > meta-ti@yoctoproject.org
> > > > > > > > https://lists.yoctoproject.org/listinfo/meta-ti


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

end of thread, other threads:[~2015-11-30 17:51 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-25 22:07 [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0 Sam Nelson
2015-11-25 22:07 ` [PATCH 2/2] multiprocmgr: Update to new version 3.0.0.0 Sam Nelson
2015-11-25 22:16 ` [PATCH 1/2] mpm-transport: Update to new version 2.0.0.0 Denys Dmytriyenko
2015-11-25 22:33   ` Nelson, Sam
2015-11-25 22:41     ` Denys Dmytriyenko
2015-11-25 22:47       ` Nelson, Sam
2015-11-25 22:54         ` Denys Dmytriyenko
2015-11-25 23:16           ` Nelson, Sam
2015-11-30 17:01             ` Denys Dmytriyenko
2015-11-30 17:51               ` Nelson, Sam

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.