diff options
-rw-r--r-- | conf/checksums.ini | 4 | ||||
-rw-r--r-- | recipes/oprofile/oprofile_0.9.5.bb | 27 |
2 files changed, 31 insertions, 0 deletions
diff --git a/conf/checksums.ini b/conf/checksums.ini index 57b86c5a6b..ab8b320cb5 100644 --- a/conf/checksums.ini +++ b/conf/checksums.ini @@ -18722,6 +18722,10 @@ sha256=cb1452159036ba7d3003b75dfef38fcbc61503f76adfca2879ebf7766931cade md5=82b059379895cf125261d7d773465915 sha256=cb1452159036ba7d3003b75dfef38fcbc61503f76adfca2879ebf7766931cade +[http://downloads.sourceforge.net/oprofile/oprofile-0.9.5.tar.gz] +md5=4b2ceca3fa013c95cc8d47c790807dc2 +sha256=1cb7c3968e3e01e7597f54b87ebc87a48c6c8e569db7e353adb91841db5b4190 + [http://www.rpsys.net/openzaurus/patches/archive/oprofile_always_bt_arm-r0.patch] md5=9d1e6a9bd4d6dc9cae3c54c18c303ace sha256=e0e33fae512e54ff27474c926a758cf687e35d2c3007f69d4c647b69d47352ae diff --git a/recipes/oprofile/oprofile_0.9.5.bb b/recipes/oprofile/oprofile_0.9.5.bb new file mode 100644 index 0000000000..d89624000d --- /dev/null +++ b/recipes/oprofile/oprofile_0.9.5.bb @@ -0,0 +1,27 @@ +require oprofile.inc + +RDEPENDS += "binutils-symlinks" +RRECOMMENDS += "kernel-vmlinux" +PR = "r3" + +SRC_URI = "\ + ${SOURCEFORGE_MIRROR}/oprofile/oprofile-${PV}.tar.gz \ + file://acinclude.m4 \ + " + +do_stage () { + # As of 0.9.4 there is a libopagent library to compile and link against. + autotools_stage_all +} + +PACKAGES = "${PN}-dev ${PN}-doc ${PN}-dbg ${PN}" + +FILES_${PN} += "\ + ${libdir}/oprofile/libopagent.so.* \ +" + +FILES_${PN}-dev += "\ + ${libdir}/oprofile/lib*.so \ + ${libdir}/oprofile/lib*.a \ + ${libdir}/oprofile/lib*.la \ +" |