From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 5CD10E0045F; Sun, 6 Jul 2014 18:09:11 -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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from smtp.webfaction.com (mail6.webfaction.com [74.55.86.74]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 1DA48E00303 for ; Sun, 6 Jul 2014 18:09:03 -0700 (PDT) Received: from [192.168.1.10] (c-68-38-40-177.hsd1.nj.comcast.net [68.38.40.177]) by smtp.webfaction.com (Postfix) with ESMTP id 9A3E32270960 for ; Mon, 7 Jul 2014 01:08:08 +0000 (UTC) Message-ID: <53B9F2F6.5080906@mindchasers.com> Date: Sun, 06 Jul 2014 21:08:06 -0400 From: Bob Cochran User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: meta-freescale@yoctoproject.org References: <1404380572-14814-1-git-send-email-ting.liu@freescale.com> <1404380572-14814-31-git-send-email-ting.liu@freescale.com> In-Reply-To: <1404380572-14814-31-git-send-email-ting.liu@freescale.com> Subject: Re: [meta-fsl-ppc][PATCH v2 30/38] auto-resp: add recipe for sdk v1.6 release X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 01:09:11 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 07/03/2014 05:42 AM, ting.liu@freescale.com wrote: > From: Ting Liu > > Signed-off-by: Ting Liu > --- > recipes-kernel/auto-resp/ar_git.bb | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > create mode 100644 recipes-kernel/auto-resp/ar_git.bb Just wanted to point out that this is one of the few recipes without any sort of README in the FSL git tree (ppc/sdk/auto-resp.git), which the recipe fetches from. Also, it's the only one I have come across that isn't documented in the FSL SDK documentation (I'm using the monolithic "QorIQ-SDK-1.6-IC-RevA.pdf" as my source). Documentation might be there, but it isn't easy to find. > > diff --git a/recipes-kernel/auto-resp/ar_git.bb b/recipes-kernel/auto-resp/ar_git.bb > new file mode 100644 > index 0000000..522c29c > --- /dev/null > +++ b/recipes-kernel/auto-resp/ar_git.bb > @@ -0,0 +1,23 @@ > +DESCRIPTION = "Auto Response Control Module" > +LICENSE = "GPLv2 & BSD" > +LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287" > + > +DEPENDS="virtual/kernel" > + > +inherit module > + > +SRC_URI = "git://git.freescale.com/ppc/sdk/auto-resp.git;nobranch=1" > +SRCREV = "7e755eb855fcbc3930cd6e46bb492a599e0ff812" > + > +S = "${WORKDIR}/git" > + > +EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} SYSROOT=${STAGING_DIR_TARGET}" > +export KERNEL_PATH = "${STAGING_KERNEL_DIR}" > + > +do_install(){ > + mkdir -p ${D}/usr/driver/auto-resp > + cp -rf ${S}/bin ${D}/usr/driver/auto-resp > +} > + > +FILES_${PN} += "/usr/driver/auto-resp" > +INHIBIT_PACKAGE_STRIP = "1" >