summaryrefslogtreecommitdiffstats
path: root/recipes-tools
diff options
context:
space:
mode:
authorZhenhua Luo <zhenhua.luo@freescale.com>2013-06-27 09:25:14 +0000
committerZhenhua Luo <zhenhua.luo@freescale.com>2013-07-03 18:34:30 +0800
commit3947585c2a47d9a441566057721fa3d015f5d635 (patch)
tree9e79c828c84a3e2705b56c94755c0546e0c71c72 /recipes-tools
parent60ba5a2022b663d5086a4af42eb3f75533975e0e (diff)
downloadmeta-fsl-ppc-3947585c2a47d9a441566057721fa3d015f5d635.tar.gz
web-sysmon: add recipe
This package contains shell and cgi scripts which maintain a database of sensor data and generate web pages containing graphs of sensor data. Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
Diffstat (limited to 'recipes-tools')
-rw-r--r--recipes-tools/web-sysmon/web-sysmon_git.bb21
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes-tools/web-sysmon/web-sysmon_git.bb b/recipes-tools/web-sysmon/web-sysmon_git.bb
new file mode 100644
index 0000000..1b2e070
--- /dev/null
+++ b/recipes-tools/web-sysmon/web-sysmon_git.bb
@@ -0,0 +1,21 @@
1DESCRIPTION = "Web System Monitor Files"
2SECTION = "web-sysmon"
3LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
5
6SRC_URI = "git://git.freescale.com/ppc/sdk/web-sysmon.git"
7SRCREV = "40b47611378ef5c07d98f0f691bb146ae52dcdc1"
8
9S = "${WORKDIR}/git"
10
11FILES_${PN} += "/"
12
13RDEPENDS_${PN} = "lighttpd"
14
15do_install() {
16 install -d ${D}/etc
17 install -m 644 ${S}/lighttpd.conf ${D}/etc
18 install -d ${D}/usr/local/bin
19 install -m 755 ${S}/rrd/sens_update_rrd ${D}/usr/local/bin
20 cp -r ${S}/rrd ${D}/usr
21}