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: [email protected]
> > 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 <[email protected]>
> > > ---
> > >  .../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
> > > [email protected]
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
_______________________________________________
meta-arago mailing list
[email protected]
http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago

Reply via email to