From 95bf5692c5553458ac90676db97092bb20ade2e8 Mon Sep 17 00:00:00 2001 From: Florian Boor Date: Fri, 5 Nov 2010 00:34:44 +0100 Subject: ubootchart: Add recipe for SVN version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A small and easy to use boot process profiler generating bootchart compatible output. From µCross, tested on armv5te platforms and other. Signed-off-by: Florian Boor --- recipes/ubootchart/ubootchart_svn.bb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 recipes/ubootchart/ubootchart_svn.bb diff --git a/recipes/ubootchart/ubootchart_svn.bb b/recipes/ubootchart/ubootchart_svn.bb new file mode 100644 index 0000000000..835638c273 --- /dev/null +++ b/recipes/ubootchart/ubootchart_svn.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "A boot profiling tool" +HOMEPAGE = "http://code.google.com/p/ubootchart/" +LICENSE="GPLv3" +PV = "0.1.0+svnr${SRCREV}" +PR = "r0" +SRCREV_pn-ubootchart ?= "12" + +SRC_URI="svn://ubootchart.googlecode.com/svn/;proto=http;module=trunk" +S = "${WORKDIR}/trunk" + + +do_patch() { + sed -i "s/@VERSION@/${PV}-${PR}/" ${S}/ubootchartd +} + +do_compile() { + ${CC} ${CFLAGS} ${LDFLAGS} ${LIBS} ${INCLUDES} ${S}/ubootchartd_bin.c -o ubootchartd_bin +} + +do_install() { + install -m 0755 -d ${D}/sbin ${D}/etc/ubootchart ${D}${docdir}/ubootchart + install -m 0755 ${S}/ubootchartd_bin ${D}/sbin + install -m 0755 ${S}/ubootchartd ${D}/sbin + install -m 0644 ${S}/ubootchart.conf ${D}/etc/ubootchart + install -m 0755 ${S}/start.sh ${D}/etc/ubootchart + install -m 0755 ${S}/finish.sh ${D}/etc/ubootchart +} -- cgit 1.2.3-korg