From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 7781DE00B46; Tue, 24 Nov 2015 11:19:02 -0800 (PST) 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 * [198.47.26.153 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from devils.ext.ti.com (devils.ext.ti.com [198.47.26.153]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 16F3FE00B44 for ; Tue, 24 Nov 2015 11:18:59 -0800 (PST) Received: from dflxv15.itg.ti.com ([128.247.5.124]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id tAOJIvpX026523; Tue, 24 Nov 2015 13:18:57 -0600 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id tAOJIvdP025912; Tue, 24 Nov 2015 13:18:57 -0600 Received: from dflp33.itg.ti.com (10.64.6.16) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.224.2; Tue, 24 Nov 2015 13:18:57 -0600 Received: from [10.218.109.201] (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id tAOJIteJ026716; Tue, 24 Nov 2015 13:18:56 -0600 Message-ID: <5654B81E.30500@ti.com> Date: Tue, 24 Nov 2015 14:18:54 -0500 From: Jacob Stiffler User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Denys Dmytriyenko , References: <1448392297-15733-1-git-send-email-denis@denix.org> In-Reply-To: <1448392297-15733-1-git-send-email-denis@denix.org> Subject: Re: [PATCH] pmmc-fw: add initial PMMC firmware binary 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, 24 Nov 2015 19:19:02 -0000 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Will this firmware be placed in the DEPLOY_DIR_IMAGES? On 11/24/2015 2:11 PM, Denys Dmytriyenko wrote: > From: Denys Dmytriyenko > > Signed-off-by: Denys Dmytriyenko > --- > recipes-bsp/pmmc-fw/pmmc-fw_git.bb | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > create mode 100644 recipes-bsp/pmmc-fw/pmmc-fw_git.bb > > diff --git a/recipes-bsp/pmmc-fw/pmmc-fw_git.bb b/recipes-bsp/pmmc-fw/pmmc-fw_git.bb > new file mode 100644 > index 0000000..0363bf6 > --- /dev/null > +++ b/recipes-bsp/pmmc-fw/pmmc-fw_git.bb > @@ -0,0 +1,27 @@ > +DESCRIPTION = "PMMC firmware" > + > +LICENSE = "TI-TFL" > +LIC_FILES_CHKSUM = "file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c" > + > +PR = "r0" > + > +CLEANBROKEN = "1" > + > +COMPATIBLE_MACHINE = "k2g-evm" > + > +PACKAGE_ARCH = "${MACHINE_ARCH}" > + > +SRCREV = "474abaf61ef4778df84b74c4a50f740149b38115" > +BRANCH ?= "master" > + > +SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-firmware.git;protocol=git;branch=${BRANCH}" > + > +S = "${WORKDIR}/git" > +TARGET = "pmmc-firmware.bin" > + > +do_install() { > + mkdir -p ${D}/boot > + cp ${S}/ti-keystone/${TARGET} ${D}/boot/${TARGET} > +} > + > +FILES_${PN} = "/boot"