mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
This patch goes through the OE-Core recipes and marks those which use autotools
but don't support a separate build directory (${S} != ${B}). A new class,
autotools-brokensep is used for this purpose.
This doesn't introduce any change in behaviour in its own right.
(From OE-Core rev: 006b8a7808a58713af16c326dc37d07765334b12)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
837 B
BlitzBasic
31 lines
837 B
BlitzBasic
SUMMARY = "Utility for creating ELF boot images for ELF-based Linux kernel images"
|
|
HOMEPAGE = "http://www.coreboot.org/Mkelfimage"
|
|
SECTION = "devel"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ea5bed2f60d357618ca161ad539f7c0a"
|
|
|
|
SRCREV = "686a48a339b3200184c27e7f98d4c03180b2be6c"
|
|
PV = "4.0+git${SRCPV}"
|
|
|
|
DEPENDS += "zlib"
|
|
|
|
SRC_URI = "git://review.coreboot.org/p/coreboot;protocol=http \
|
|
file://cross-compile.patch \
|
|
file://fix-makefile-to-find-libz.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git/util/mkelfImage"
|
|
|
|
CFLAGS += "-fno-stack-protector"
|
|
CACHED_CONFIGUREVARS += "HOST_CC='${BUILD_CC}'"
|
|
EXTRA_OEMAKE += "HOST_CPPFLAGS='${BUILD_CPPFLAGS}'"
|
|
|
|
inherit autotools-brokensep
|
|
|
|
do_install_append() {
|
|
rmdir ${D}${datadir}/mkelfImage/elf32-i386
|
|
rmdir ${D}${datadir}/mkelfImage
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|