From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 56D4EE00B46; Tue, 24 Nov 2015 11:12:12 -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=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [206.46.173.23 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from vms173023pub.verizon.net (vms173023pub.verizon.net [206.46.173.23]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 43F21E00B44 for ; Tue, 24 Nov 2015 11:12:06 -0800 (PST) Received: from gandalf.denix.org ([108.51.169.48]) by vms173023.mailsrvcs.net (Oracle Communications Messaging Server 7.0.5.32.0 64bit (built Jul 16 2014)) with ESMTPSA id <0NYC009ON2NDZS60@vms173023.mailsrvcs.net> for meta-ti@yoctoproject.org; Tue, 24 Nov 2015 13:11:38 -0600 (CST) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=btqxfxui c=1 sm=1 tr=0 a=x3PDphkivVtATbYodTxRAw==:117 a=0gcC27t9AAAA:8 a=oR5dmqMzAAAA:8 a=qtqOOiqGOCEA:10 a=sozttTNsAAAA:8 a=45lXSepng3jDXxENVaAA:9 Received: from localhost.localdomain (elrond [192.168.0.7]) by gandalf.denix.org (Postfix) with ESMTP id CE1D1161D26; Tue, 24 Nov 2015 14:11:37 -0500 (EST) From: Denys Dmytriyenko To: meta-ti@yoctoproject.org Date: Tue, 24 Nov 2015 14:11:37 -0500 Message-id: <1448392297-15733-1-git-send-email-denis@denix.org> X-Mailer: git-send-email 2.2.0 Subject: [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:12:12 -0000 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" -- 2.2.0