From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id CDEB6E007C1; Tue, 7 Oct 2014 14:40:49 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -5.0 RCVD_IN_DNSWL_HI RBL: Sender listed at http://www.dnswl.org/, high * trust * [192.94.94.40 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from arroyo.ext.ti.com (arroyo.ext.ti.com [192.94.94.40]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 36EFDE0076C for ; Tue, 7 Oct 2014 14:40:48 -0700 (PDT) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id s97Lel7N004793 for ; Tue, 7 Oct 2014 16:40:47 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s97LelGY003645 for ; Tue, 7 Oct 2014 16:40:47 -0500 Received: from dlep32.itg.ti.com (157.170.170.100) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.174.1; Tue, 7 Oct 2014 16:40:48 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep32.itg.ti.com (8.14.3/8.13.8) with ESMTP id s97Lel9v019275; Tue, 7 Oct 2014 16:40:47 -0500 Date: Tue, 7 Oct 2014 17:40:47 -0400 From: Denys Dmytriyenko To: Sam Nelson Message-ID: <20141007214046.GL1731@edge> References: <1412717489-29990-1-git-send-email-sam.nelson@ti.com> MIME-Version: 1.0 In-Reply-To: <1412717489-29990-1-git-send-email-sam.nelson@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: meta-ti@yoctoproject.org Subject: Re: [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti X-BeenThere: meta-ti@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-ti layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 21:40:49 -0000 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline On Tue, Oct 07, 2014 at 05:31:27PM -0400, Sam Nelson wrote: > -Moved recipe to meta-arago based on review comments ^^ from meta-arago? > (from http://arago-project.org/git/?p=meta-arago.git;a=blob;f=meta-arago-extras/recipes-bsp/ti-rm/ti-rm_git.bb;h=38ec0ada5330977a5e19928e02060c9857b1f8d0;hb=HEAD) Do you want the link above? It's not really necessary, but I can go either way. > - Provides resource manager low level driver > > Signed-off-by: Sam Nelson > --- > recipes-bsp/rm-lld/ti-rm_git.bb | 49 +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 49 insertions(+) > create mode 100644 recipes-bsp/rm-lld/ti-rm_git.bb > > diff --git a/recipes-bsp/rm-lld/ti-rm_git.bb b/recipes-bsp/rm-lld/ti-rm_git.bb > new file mode 100644 > index 0000000..276c01e > --- /dev/null > +++ b/recipes-bsp/rm-lld/ti-rm_git.bb > @@ -0,0 +1,49 @@ > +DESCRIPTION = "TI Resource Manager Low Level Driver" > +LICENSE = "TI BSD" > +LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc" > + > +BRANCH="master" > +SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}" > +# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04 > +SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049" > +PR = "r0" > +PV = "02.01.00.04" > + > +COMPATIBLE_MACHINE = "keystone" > + > +DEPENDS = "ti-ipc" > + > +PACKAGES =+ "${PN}-test" > + > +FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \ > + ${bindir}/rmLinuxClientTest_*.out \ > + ${bindir}/ti/drv/rm/test/dts_files/*.dtb" > + > +DEVICELIST = "k2h k2k" > + > +CHOICELIST = "yes no" > + > +BASEDIR = "${WORKDIR}/git" > +S = "${BASEDIR}/ti/drv/rm" > + > +do_compile () { > +# Now build the lld > + make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S} > + for device in ${DEVICELIST} > + do > + for choice in ${CHOICELIST} > + do > + make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice" > + done > + done > +} > + > +do_install () { > + install -d ${D}${includedir}/ti/drv/rm > + install -d ${D}${libdir} > + install -d ${D}${bindir} > + for device in ${DEVICELIST} > + do > + make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device" > + done > +} > -- > 1.7.9.5 > > -- > _______________________________________________ > meta-ti mailing list > meta-ti@yoctoproject.org > https://lists.yoctoproject.org/listinfo/meta-ti