* [PATCH] ti-edma3: Add recipe for EDMA3 user space low level driver
@ 2014-03-02 23:13 Sam Nelson
2014-03-05 3:09 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Sam Nelson @ 2014-03-02 23:13 UTC (permalink / raw)
To: meta-arago
- Low level user space driver and test code for TI EDMA3
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
.../recipes-bsp/ti-edma3/ti-edma3_git.bb | 69 ++++++++++++++++++++
1 file changed, 69 insertions(+)
create mode 100755 meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
diff --git a/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
new file mode 100755
index 0000000..82b980f
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
@@ -0,0 +1,69 @@
+DESCRIPTION = "TI EDMA3 low level driver and test code"
+LICENSE = "TI-BSD"
+LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5bdceac872dffdec915b819654ee23ea"
+
+BRANCH="master"
+SRC_URI = "git://git.ti.com/keystone-rtos/edma3_lld.git"
+# The following commit corresponds to tag DEV_EDMA3_LLD_02_11_11_15_RC01
+SRCREV = "b73a262bf6f6d366e3bf83d0c116be2b61a86dde"
+
+PV="2.11.11"
+
+COMPATIBLE_MACHINE = "keystone-evm"
+
+PR = "r0"
+DEPENDS="ti-csl"
+
+PLATFORMLIST = "tci6636k2h-evm \
+ tci6638k2k-evm \
+ tci6630k2l-evm \
+ c66ak2e-evm \
+ "
+
+PACKAGES =+ "${PN}-bin"
+
+FILES_${PN}-bin = "${bindir}/*"
+
+S = "${WORKDIR}/git"
+
+do_compile () {
+ cd ${S}/packages
+ for platform in ${PLATFORMLIST}
+ do
+ ROOTDIR=${S} CROSSCC="${TARGET_PREFIX}gcc" CROSSAR="${TARGET_PREFIX}ar" \
+ CROSSLNK="${TARGET_PREFIX}gcc" INTERNAL_SW_ROOT=${S} make \
+ PLATFORM=${platform} TARGET=a15 TOOLCHAIN_a15=GCC FORMAT=ELF SONAME=libedma3.so all
+ done
+}
+
+do_install () {
+ install -d ${D}/${libdir}
+
+ # Static Libraries
+ cp ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/edma3_lld_drv.aa15fg ${D}/${libdir}/libedma3.a
+ cp ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-evm/a15/release/edma3_lld_rm.aa15fg ${D}/${libdir}/libedma3rm.a
+
+ # Shared Libraries
+ cp -a ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/libedma* ${D}/${libdir}
+ cp -a ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-evm/a15/release/libedma* ${D}/${libdir}
+
+ # Copy Headers
+ install -d ${D}/${includedir}/ti/sdo/edma3/drv/
+ install -d ${D}/${includedir}/ti/sdo/edma3/rm
+ cp ${S}/packages/ti/sdo/edma3/drv/*.h ${D}/${includedir}/ti/sdo/edma3/drv/
+ cp ${S}/packages/ti/sdo/edma3/rm/*.h ${D}/${includedir}/ti/sdo/edma3/rm/
+
+ # Copy Sample Config
+ install -d ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
+ cp ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/evmTCI6636K2HSample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
+ cp ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/evmTCI6638K2KSample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
+ cp ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/evmTCI6630K2LSample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
+ cp ${S}/examples/edma3_user_space_driver/evmC66AK2E/evmC66AK2ESample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
+
+ install -d ${D}/${bindir}
+ install -c -m 755 ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/bin/tci6636k2h-evm/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg
+ install -c -m 755 ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/bin/tci6638k2k-evm/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg
+ install -c -m 755 ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/bin/tci6630k2l-evm/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg
+ install -c -m 755 ${S}/examples/edma3_user_space_driver/evmC66AK2E/bin/c66ak2e-evm/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg
+}
+
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ti-edma3: Add recipe for EDMA3 user space low level driver
2014-03-02 23:13 [PATCH] ti-edma3: Add recipe for EDMA3 user space low level driver Sam Nelson
@ 2014-03-05 3:09 ` Denys Dmytriyenko
2014-03-05 3:35 ` Nelson, Sam
0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-03-05 3:09 UTC (permalink / raw)
To: Sam Nelson; +Cc: meta-arago
Is this a re-submit or v2 of the previous submission?
On Sun, Mar 02, 2014 at 06:13:07PM -0500, Sam Nelson wrote:
> - Low level user space driver and test code for TI EDMA3
>
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
> .../recipes-bsp/ti-edma3/ti-edma3_git.bb | 69 ++++++++++++++++++++
> 1 file changed, 69 insertions(+)
> create mode 100755 meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
>
> diff --git a/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> new file mode 100755
> index 0000000..82b980f
> --- /dev/null
> +++ b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> @@ -0,0 +1,69 @@
> +DESCRIPTION = "TI EDMA3 low level driver and test code"
> +LICENSE = "TI-BSD"
> +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5bdceac872dffdec915b819654ee23ea"
> +
> +BRANCH="master"
> +SRC_URI = "git://git.ti.com/keystone-rtos/edma3_lld.git"
> +# The following commit corresponds to tag DEV_EDMA3_LLD_02_11_11_15_RC01
> +SRCREV = "b73a262bf6f6d366e3bf83d0c116be2b61a86dde"
> +
> +PV="2.11.11"
> +
> +COMPATIBLE_MACHINE = "keystone-evm"
> +
> +PR = "r0"
> +DEPENDS="ti-csl"
> +
> +PLATFORMLIST = "tci6636k2h-evm \
> + tci6638k2k-evm \
> + tci6630k2l-evm \
> + c66ak2e-evm \
> + "
> +
> +PACKAGES =+ "${PN}-bin"
> +
> +FILES_${PN}-bin = "${bindir}/*"
> +
> +S = "${WORKDIR}/git"
> +
> +do_compile () {
> + cd ${S}/packages
> + for platform in ${PLATFORMLIST}
> + do
> + ROOTDIR=${S} CROSSCC="${TARGET_PREFIX}gcc" CROSSAR="${TARGET_PREFIX}ar" \
> + CROSSLNK="${TARGET_PREFIX}gcc" INTERNAL_SW_ROOT=${S} make \
> + PLATFORM=${platform} TARGET=a15 TOOLCHAIN_a15=GCC FORMAT=ELF SONAME=libedma3.so all
> + done
> +}
> +
> +do_install () {
> + install -d ${D}/${libdir}
> +
> + # Static Libraries
> + cp ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/edma3_lld_drv.aa15fg ${D}/${libdir}/libedma3.a
> + cp ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-evm/a15/release/edma3_lld_rm.aa15fg ${D}/${libdir}/libedma3rm.a
> +
> + # Shared Libraries
> + cp -a ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/libedma* ${D}/${libdir}
> + cp -a ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-evm/a15/release/libedma* ${D}/${libdir}
> +
> + # Copy Headers
> + install -d ${D}/${includedir}/ti/sdo/edma3/drv/
> + install -d ${D}/${includedir}/ti/sdo/edma3/rm
> + cp ${S}/packages/ti/sdo/edma3/drv/*.h ${D}/${includedir}/ti/sdo/edma3/drv/
> + cp ${S}/packages/ti/sdo/edma3/rm/*.h ${D}/${includedir}/ti/sdo/edma3/rm/
> +
> + # Copy Sample Config
> + install -d ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> + cp ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/evmTCI6636K2HSample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> + cp ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/evmTCI6638K2KSample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> + cp ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/evmTCI6630K2LSample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> + cp ${S}/examples/edma3_user_space_driver/evmC66AK2E/evmC66AK2ESample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> +
> + install -d ${D}/${bindir}
> + install -c -m 755 ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/bin/tci6636k2h-evm/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg
> + install -c -m 755 ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/bin/tci6638k2k-evm/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg
> + install -c -m 755 ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/bin/tci6630k2l-evm/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg
> + install -c -m 755 ${S}/examples/edma3_user_space_driver/evmC66AK2E/bin/c66ak2e-evm/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg ${D}/${bindir}/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg
> +}
> +
> --
> 1.7.9.5
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ti-edma3: Add recipe for EDMA3 user space low level driver
2014-03-05 3:09 ` Denys Dmytriyenko
@ 2014-03-05 3:35 ` Nelson, Sam
2014-03-05 3:38 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Nelson, Sam @ 2014-03-05 3:35 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
This is really v2. ( But I did not realize I have sent an earlier one. Checking back there was no review comments on the previous one.)
It is a new recipe and previous one can be ignored. Let me know if I need to send this as v2.
With regards,
Sam
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Tuesday, March 04, 2014 10:10 PM
> To: Nelson, Sam
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH] ti-edma3: Add recipe for EDMA3 user
> space low level driver
>
> Is this a re-submit or v2 of the previous submission?
>
>
> On Sun, Mar 02, 2014 at 06:13:07PM -0500, Sam Nelson wrote:
> > - Low level user space driver and test code for TI EDMA3
> >
> > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > ---
> > .../recipes-bsp/ti-edma3/ti-edma3_git.bb | 69
> ++++++++++++++++++++
> > 1 file changed, 69 insertions(+)
> > create mode 100755 meta-arago-extras/recipes-bsp/ti-edma3/ti-
> edma3_git.bb
> >
> > diff --git a/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> > new file mode 100755
> > index 0000000..82b980f
> > --- /dev/null
> > +++ b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> > @@ -0,0 +1,69 @@
> > +DESCRIPTION = "TI EDMA3 low level driver and test code"
> > +LICENSE = "TI-BSD"
> > +LIC_FILES_CHKSUM =
> "file://COPYING.txt;md5=5bdceac872dffdec915b819654ee23ea"
> > +
> > +BRANCH="master"
> > +SRC_URI = "git://git.ti.com/keystone-rtos/edma3_lld.git"
> > +# The following commit corresponds to tag
> DEV_EDMA3_LLD_02_11_11_15_RC01
> > +SRCREV = "b73a262bf6f6d366e3bf83d0c116be2b61a86dde"
> > +
> > +PV="2.11.11"
> > +
> > +COMPATIBLE_MACHINE = "keystone-evm"
> > +
> > +PR = "r0"
> > +DEPENDS="ti-csl"
> > +
> > +PLATFORMLIST = "tci6636k2h-evm \
> > + tci6638k2k-evm \
> > + tci6630k2l-evm \
> > + c66ak2e-evm \
> > + "
> > +
> > +PACKAGES =+ "${PN}-bin"
> > +
> > +FILES_${PN}-bin = "${bindir}/*"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +do_compile () {
> > + cd ${S}/packages
> > + for platform in ${PLATFORMLIST}
> > + do
> > + ROOTDIR=${S} CROSSCC="${TARGET_PREFIX}gcc"
> CROSSAR="${TARGET_PREFIX}ar" \
> > + CROSSLNK="${TARGET_PREFIX}gcc"
> INTERNAL_SW_ROOT=${S} make \
> > + PLATFORM=${platform} TARGET=a15 TOOLCHAIN_a15=GCC
> FORMAT=ELF SONAME=libedma3.so all
> > + done
> > +}
> > +
> > +do_install () {
> > + install -d ${D}/${libdir}
> > +
> > + # Static Libraries
> > + cp
> ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/edma3_lld_drv.aa15fg
> ${D}/${libdir}/libedma3.a
> > + cp ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-
> evm/a15/release/edma3_lld_rm.aa15fg ${D}/${libdir}/libedma3rm.a
> > +
> > + # Shared Libraries
> > + cp -a ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/libedma*
> ${D}/${libdir}
> > + cp -a ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-
> evm/a15/release/libedma* ${D}/${libdir}
> > +
> > + # Copy Headers
> > + install -d ${D}/${includedir}/ti/sdo/edma3/drv/
> > + install -d ${D}/${includedir}/ti/sdo/edma3/rm
> > + cp ${S}/packages/ti/sdo/edma3/drv/*.h
> ${D}/${includedir}/ti/sdo/edma3/drv/
> > + cp ${S}/packages/ti/sdo/edma3/rm/*.h
> ${D}/${includedir}/ti/sdo/edma3/rm/
> > +
> > + # Copy Sample Config
> > + install -d ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > + cp
> ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/evmTCI6636K2H
> Sample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > + cp
> ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/evmTCI6638K2K
> Sample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > + cp
> ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/evmTCI6630K2LS
> ample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > + cp
> ${S}/examples/edma3_user_space_driver/evmC66AK2E/evmC66AK2ESampl
> e.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > +
> > + install -d ${D}/${bindir}
> > + install -c -m 755
> ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/bin/tci6636k2h-
> evm/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg
> ${D}/${bindir}/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg
> > + install -c -m 755
> ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/bin/tci6638k2k-
> evm/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg
> ${D}/${bindir}/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg
> > + install -c -m 755
> ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/bin/tci6630k2l-
> evm/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg
> ${D}/${bindir}/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg
> > + install -c -m 755
> ${S}/examples/edma3_user_space_driver/evmC66AK2E/bin/c66ak2e-
> evm/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg
> ${D}/${bindir}/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg
> > +}
> > +
> > --
> > 1.7.9.5
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ti-edma3: Add recipe for EDMA3 user space low level driver
2014-03-05 3:35 ` Nelson, Sam
@ 2014-03-05 3:38 ` Denys Dmytriyenko
0 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-03-05 3:38 UTC (permalink / raw)
To: Nelson, Sam; +Cc: meta-arago@arago-project.org
On Tue, Mar 04, 2014 at 10:35:49PM -0500, Nelson, Sam wrote:
> This is really v2. ( But I did not realize I have sent an earlier one.
> Checking back there was no review comments on the previous one.)
> It is a new recipe and previous one can be ignored. Let me know if I need
> to send this as v2.
No need to resend, I just found 2 copies and wanted to ask if there were
differences. I'll just ignore the earlier one.
> With regards,
> Sam
>
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Tuesday, March 04, 2014 10:10 PM
> > To: Nelson, Sam
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH] ti-edma3: Add recipe for EDMA3 user
> > space low level driver
> >
> > Is this a re-submit or v2 of the previous submission?
> >
> >
> > On Sun, Mar 02, 2014 at 06:13:07PM -0500, Sam Nelson wrote:
> > > - Low level user space driver and test code for TI EDMA3
> > >
> > > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > > ---
> > > .../recipes-bsp/ti-edma3/ti-edma3_git.bb | 69
> > ++++++++++++++++++++
> > > 1 file changed, 69 insertions(+)
> > > create mode 100755 meta-arago-extras/recipes-bsp/ti-edma3/ti-
> > edma3_git.bb
> > >
> > > diff --git a/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> > b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> > > new file mode 100755
> > > index 0000000..82b980f
> > > --- /dev/null
> > > +++ b/meta-arago-extras/recipes-bsp/ti-edma3/ti-edma3_git.bb
> > > @@ -0,0 +1,69 @@
> > > +DESCRIPTION = "TI EDMA3 low level driver and test code"
> > > +LICENSE = "TI-BSD"
> > > +LIC_FILES_CHKSUM =
> > "file://COPYING.txt;md5=5bdceac872dffdec915b819654ee23ea"
> > > +
> > > +BRANCH="master"
> > > +SRC_URI = "git://git.ti.com/keystone-rtos/edma3_lld.git"
> > > +# The following commit corresponds to tag
> > DEV_EDMA3_LLD_02_11_11_15_RC01
> > > +SRCREV = "b73a262bf6f6d366e3bf83d0c116be2b61a86dde"
> > > +
> > > +PV="2.11.11"
> > > +
> > > +COMPATIBLE_MACHINE = "keystone-evm"
> > > +
> > > +PR = "r0"
> > > +DEPENDS="ti-csl"
> > > +
> > > +PLATFORMLIST = "tci6636k2h-evm \
> > > + tci6638k2k-evm \
> > > + tci6630k2l-evm \
> > > + c66ak2e-evm \
> > > + "
> > > +
> > > +PACKAGES =+ "${PN}-bin"
> > > +
> > > +FILES_${PN}-bin = "${bindir}/*"
> > > +
> > > +S = "${WORKDIR}/git"
> > > +
> > > +do_compile () {
> > > + cd ${S}/packages
> > > + for platform in ${PLATFORMLIST}
> > > + do
> > > + ROOTDIR=${S} CROSSCC="${TARGET_PREFIX}gcc"
> > CROSSAR="${TARGET_PREFIX}ar" \
> > > + CROSSLNK="${TARGET_PREFIX}gcc"
> > INTERNAL_SW_ROOT=${S} make \
> > > + PLATFORM=${platform} TARGET=a15 TOOLCHAIN_a15=GCC
> > FORMAT=ELF SONAME=libedma3.so all
> > > + done
> > > +}
> > > +
> > > +do_install () {
> > > + install -d ${D}/${libdir}
> > > +
> > > + # Static Libraries
> > > + cp
> > ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/edma3_lld_drv.aa15fg
> > ${D}/${libdir}/libedma3.a
> > > + cp ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-
> > evm/a15/release/edma3_lld_rm.aa15fg ${D}/${libdir}/libedma3rm.a
> > > +
> > > + # Shared Libraries
> > > + cp -a ${S}/packages/ti/sdo/edma3/drv/lib/a15/release/libedma*
> > ${D}/${libdir}
> > > + cp -a ${S}/packages/ti/sdo/edma3/rm/lib/tci6636k2h-
> > evm/a15/release/libedma* ${D}/${libdir}
> > > +
> > > + # Copy Headers
> > > + install -d ${D}/${includedir}/ti/sdo/edma3/drv/
> > > + install -d ${D}/${includedir}/ti/sdo/edma3/rm
> > > + cp ${S}/packages/ti/sdo/edma3/drv/*.h
> > ${D}/${includedir}/ti/sdo/edma3/drv/
> > > + cp ${S}/packages/ti/sdo/edma3/rm/*.h
> > ${D}/${includedir}/ti/sdo/edma3/rm/
> > > +
> > > + # Copy Sample Config
> > > + install -d ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > > + cp
> > ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/evmTCI6636K2H
> > Sample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > > + cp
> > ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/evmTCI6638K2K
> > Sample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > > + cp
> > ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/evmTCI6630K2LS
> > ample.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > > + cp
> > ${S}/examples/edma3_user_space_driver/evmC66AK2E/evmC66AK2ESampl
> > e.c ${D}/${includedir}/ti/sdo/edma3/drv/sample/src/platforms
> > > +
> > > + install -d ${D}/${bindir}
> > > + install -c -m 755
> > ${S}/examples/edma3_user_space_driver/evmTCI6636K2H/bin/tci6636k2h-
> > evm/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg
> > ${D}/${bindir}/edma3_drv_6636k2h_a15_sample_a15host_release.xa15fg
> > > + install -c -m 755
> > ${S}/examples/edma3_user_space_driver/evmTCI6638K2K/bin/tci6638k2k-
> > evm/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg
> > ${D}/${bindir}/edma3_drv_6638k2k_a15_sample_a15host_release.xa15fg
> > > + install -c -m 755
> > ${S}/examples/edma3_user_space_driver/evmTCI6630K2L/bin/tci6630k2l-
> > evm/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg
> > ${D}/${bindir}/edma3_drv_6630k2l_a15_sample_a15host_release.xa15fg
> > > + install -c -m 755
> > ${S}/examples/edma3_user_space_driver/evmC66AK2E/bin/c66ak2e-
> > evm/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg
> > ${D}/${bindir}/edma3_drv_c66ak2e_a15_sample_a15host_release.xa15fg
> > > +}
> > > +
> > > --
> > > 1.7.9.5
> > >
> > > _______________________________________________
> > > meta-arago mailing list
> > > meta-arago@arago-project.org
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-05 3:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02 23:13 [PATCH] ti-edma3: Add recipe for EDMA3 user space low level driver Sam Nelson
2014-03-05 3:09 ` Denys Dmytriyenko
2014-03-05 3:35 ` Nelson, Sam
2014-03-05 3:38 ` Denys Dmytriyenko
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.