mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 03:32:13 +02:00
Some place pnum=1 is used which is removed as well since striplevel=1 is default (From OE-Core rev: 4e108857e0d40105f7ecbc55e99bd6c367bb7386) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
711 B
BlitzBasic
29 lines
711 B
BlitzBasic
PV = "0.9.4+cvs${SRCDATE}"
|
|
PR = "r1"
|
|
SECTION = "devel"
|
|
SUMMARY = "System-Wide Profiler"
|
|
DESCRIPTION = "OProfile is a system-wide profiler for Linux systems, capable \
|
|
of profiling all running code at low overhead."
|
|
LICENSE = "GPL"
|
|
DEPENDS = "popt binutils"
|
|
RDEPENDS_${PN} = "binutils-symlinks"
|
|
RRECOMMENDS_${PN} = "kernel-vmlinux"
|
|
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
SRC_URI = "cvs://anonymous@oprofile.cvs.sourceforge.net/cvsroot/oprofile;module=oprofile \
|
|
file://opstart.patch \
|
|
file://acinclude.m4"
|
|
S = "${WORKDIR}/oprofile"
|
|
|
|
inherit autotools
|
|
|
|
EXTRA_OECONF = "--with-kernel-support \
|
|
--without-x \
|
|
--disable-werror "
|
|
|
|
do_configure () {
|
|
cp ${WORKDIR}/acinclude.m4 ${S}/
|
|
autotools_do_configure
|
|
}
|