From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 75-148-42-21-colorado.hfc.comcastbusiness.net ([75.148.42.21] helo=judge.camp.se-eng.com) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1SkdTR-0004ZQ-TT for openembedded-core@lists.openembedded.org; Fri, 29 Jun 2012 17:51:10 +0200 Received: from localhost (localhost [127.0.0.1]) by judge.camp.se-eng.com (Postfix) with ESMTP id 96970139143 for ; Fri, 29 Jun 2012 09:40:13 -0600 (MDT) X-Virus-Scanned: amavisd-new at camp.se-eng.com Received: from judge.camp.se-eng.com ([127.0.0.1]) by localhost (judge.camp.se-eng.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d0vbfyUlapvM; Fri, 29 Jun 2012 09:40:12 -0600 (MDT) Received: from beast (beast.camp.se-eng.com [172.20.202.96]) by judge.camp.se-eng.com (Postfix) with ESMTP id A2951139140; Fri, 29 Jun 2012 09:40:12 -0600 (MDT) Received: by beast (Postfix, from userid 1000) id 81D782C6DC; Fri, 29 Jun 2012 09:41:41 -0600 (MDT) From: Raymond Danks To: openembedded-core@lists.openembedded.org Date: Fri, 29 Jun 2012 09:41:37 -0600 Message-Id: <1340984497-32423-2-git-send-email-ray.danks@se-eng.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1340396533-5386-2-git-send-email-ray.danks@se-eng.com> References: <1340396533-5386-2-git-send-email-ray.danks@se-eng.com> Subject: [PATCH 2/2 v2] mkelfimage: Add stable git build (initial recipe) X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jun 2012 15:51:10 -0000 Signed-off-by: Raymond Danks --- This was originally submitted to the openembedded project: http://patches.openembedded.org/patch/7687/ v2: Remove depreciated NATIVE_INSTALL_WORKS meta/recipes-devtools/mkelfimage/mkelfimage_git.bb | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-devtools/mkelfimage/mkelfimage_git.bb diff --git a/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb new file mode 100644 index 0000000..1224a63 --- /dev/null +++ b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "A utility to create ELF boot images from Linux kernel images" +HOMEPAGE = "http://www.coreboot.org/Mkelfimage" +SECTION = "devel" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=ea5bed2f60d357618ca161ad539f7c0a" + +SRCREV = "e13632a939e7dde8d7d44fc73e73a41dae8060c3" +PV = "1.0.0+gitr${SRCPV}" +PR = "r1" + +SRC_URI = "git://review.coreboot.org/p/coreboot;protocol=http;branch=master" + +S = "${WORKDIR}/git/util/mkelfImage" + +inherit autotools + +BBCLASSEXTEND = "native" -- 1.7.0.4