diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 13:59:10 +0200 |
---|---|---|
committer | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 14:13:09 +0200 |
commit | e064c208e2c78663b0be1316117d963798839d6e (patch) | |
tree | d5d7bb0e950e5d6960d464f96f82f8132b8225c8 /recipes-extended/web-sysmon | |
download | meta-fsl-ppc-daisy-enea.tar.gz |
initial commit for Enea Linux 4.0daisy-enea
Migrated from the internal git server on the daisy-enea branch
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'recipes-extended/web-sysmon')
-rw-r--r-- | recipes-extended/web-sysmon/web-sysmon_git.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes-extended/web-sysmon/web-sysmon_git.bb b/recipes-extended/web-sysmon/web-sysmon_git.bb new file mode 100644 index 0000000..d9df8e4 --- /dev/null +++ b/recipes-extended/web-sysmon/web-sysmon_git.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "Web System Monitor Files" | ||
2 | SECTION = "web-sysmon" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e" | ||
5 | |||
6 | SRCBRANCH = "sdk-v1.4.x" | ||
7 | SRC_URI = "git://git.freescale.com/ppc/sdk/web-sysmon.git;branch=${SRCBRANCH}" | ||
8 | SRCREV = "40b47611378ef5c07d98f0f691bb146ae52dcdc1" | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
11 | |||
12 | FILES_${PN} += "/" | ||
13 | |||
14 | RDEPENDS_${PN} = "lighttpd" | ||
15 | |||
16 | do_install() { | ||
17 | install -d ${D}/etc | ||
18 | install -m 644 ${S}/lighttpd.conf ${D}/etc | ||
19 | install -d ${D}/usr/local/bin | ||
20 | install -m 755 ${S}/rrd/sens_update_rrd ${D}/usr/local/bin | ||
21 | cp -r ${S}/rrd ${D}/usr | ||
22 | } | ||