diff options
author | Emilia Ciobanu <emilia.maria.silvia.ciobanu@intel.com> | 2013-07-03 18:02:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-05 15:34:22 +0100 |
commit | fc829756079100bec0ae3929ea5f690b8cd7f689 (patch) | |
tree | 979b8a0988485883d7c23d40a6e97fcc50e3cc08 /meta/recipes-devtools/mkelfimage/mkelfimage_git.bb | |
parent | 36afee199fd48fbd9d57c808e19b8c2ca9f482d1 (diff) | |
download | poky-fc829756079100bec0ae3929ea5f690b8cd7f689.tar.gz |
mkelfimage: switch to git repository
The project has switched to using git for version control.
(From OE-Core rev: 8a9a476c03a3bc2782206799933d92e216032ff7)
Signed-off-by: Emilia Ciobanu <emilia.maria.silvia.ciobanu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/mkelfimage/mkelfimage_git.bb')
-rw-r--r-- | meta/recipes-devtools/mkelfimage/mkelfimage_git.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb new file mode 100644 index 0000000000..8d232bbb3f --- /dev/null +++ b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | DESCRIPTION = "A utility to create ELF boot images for ELF-based Linux kernel images" | ||
2 | HOMEPAGE = "http://www.coreboot.org/Mkelfimage" | ||
3 | SECTION = "devel" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=ea5bed2f60d357618ca161ad539f7c0a" | ||
6 | |||
7 | SRCREV = "686a48a339b3200184c27e7f98d4c03180b2be6c" | ||
8 | PV = "4.0+git${SRCPV}" | ||
9 | PR = "r0" | ||
10 | |||
11 | DEPENDS += "zlib" | ||
12 | |||
13 | SRC_URI = "git://review.coreboot.org/p/coreboot;protocol=http \ | ||
14 | file://cross-compile.patch \ | ||
15 | file://fix-makefile-to-find-libz.patch \ | ||
16 | " | ||
17 | |||
18 | S = "${WORKDIR}/git/util/mkelfImage" | ||
19 | |||
20 | CFLAGS += "-fno-stack-protector" | ||
21 | CACHED_CONFIGUREVARS += "HOST_CC='${BUILD_CC}'" | ||
22 | EXTRA_OEMAKE += "HOST_CPPFLAGS='${BUILD_CPPFLAGS}'" | ||
23 | |||
24 | inherit autotools | ||
25 | |||
26 | do_install_append() { | ||
27 | rmdir ${D}${datadir}/mkelfImage/elf32-i386 | ||
28 | rmdir ${D}${datadir}/mkelfImage | ||
29 | } | ||
30 | |||
31 | BBCLASSEXTEND = "native" | ||