summaryrefslogtreecommitdiff
path: root/packages/bootchart
diff options
context:
space:
mode:
authorFlorian Boor <florian.boor@kernelconcepts.de>2006-08-04 13:59:42 +0000
committerFlorian Boor <florian.boor@kernelconcepts.de>2006-08-04 13:59:42 +0000
commitcfdb8d4196eb11aabbdd98c25ce79e3effc8f405 (patch)
tree4a7a4484d9d40ae5f91979d8f33e63155003912c /packages/bootchart
parent988dc86e7d6520de28747b2739a9f7697f9acfee (diff)
parent3f59dd4dea40bf32a207763fcabd5e72a8a93553 (diff)
merge of 0c794d3c26ebf237e0cb48477ca29509caf0987c
and 1fabadea24c36f83b75bb8e13e7fe5bd38d9a6ce
Diffstat (limited to 'packages/bootchart')
-rw-r--r--packages/bootchart/bootchart_0.9.bb17
1 files changed, 8 insertions, 9 deletions
diff --git a/packages/bootchart/bootchart_0.9.bb b/packages/bootchart/bootchart_0.9.bb
index b9b4029590..abbdda4488 100644
--- a/packages/bootchart/bootchart_0.9.bb
+++ b/packages/bootchart/bootchart_0.9.bb
@@ -2,28 +2,27 @@ DESCRIPTION = "Bootchart is a tool for performance analysis and visualization of
LICENSE = "GPLv2"
HOMEPAGE = "http://www.bootchart.org/"
MAINTAINER = "Koen Kooi <koen@dominion.kabel.utwente.nl>"
-
+PR = "r1"
#this only installs the loggers, you will need to run the renderers on your workstation
#boot with 'init=/sbin/bootchartd' and do '/sbin/bootchartd stop' to end the logging
#needed for a real /bin/sh and /bin/sleep
-DEPENDS = "bash coreutils"
-RDEPENDS = "bash coreutils"
+DEPENDS = "bash coreutils acct"
+RDEPENDS = "bash coreutils acct"
#this is a plain shell script
PACKAGE_ARCH = "all"
-SRC_URI = "file://bootchart \
- file://bootchartd \
- file://bootchartd.conf"
+SRC_URI = "${SOURCEFORGE_MIRROR}/bootchart/bootchart-${PV}.tar.bz2\
+ file://handheld.patch;patch=1"
do_install() {
install -d ${D}/sbin
install -d ${D}/etc
- install -m 755 ${WORKDIR}/bootchart ${D}/sbin
- install -m 755 ${WORKDIR}/bootchartd ${D}/sbin
- install -m 644 ${WORKDIR}/bootchart ${D}/etc
+ install -d ${D}/bootchart
+ install -m 755 ${S}/script/bootchartd ${D}/sbin
+ install -m 644 ${S}/script/bootchartd.conf ${D}/etc
}