summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-08-05 01:15:24 +0000
committerChris Larson <clarson@kergoth.com>2004-08-05 01:15:24 +0000
commit44be6eb82125a13c6a539f4a234cc45e50c9a37b (patch)
tree0435c2af2eb55749d59e58c0c71701f0d5ab6dd8
parent69f05d8ab9593b64f46e28ee73917b6b8071d6a2 (diff)
Fix the ksymoops do_install of the man page.
BKrev: 41118a2ciip_LmVdaafqe4L5BuwfUw
-rw-r--r--ksymoops/ksymoops_2.4.9.oe15
1 files changed, 15 insertions, 0 deletions
diff --git a/ksymoops/ksymoops_2.4.9.oe b/ksymoops/ksymoops_2.4.9.oe
index e69de29bb2..c69d132640 100644
--- a/ksymoops/ksymoops_2.4.9.oe
+++ b/ksymoops/ksymoops_2.4.9.oe
@@ -0,0 +1,15 @@
+DESCRIPTION = "Kernel oops and error message decoder."
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+LICENSE = "GPLv2"
+DEPENDS = "binutils"
+
+SRC_URI = "http://www.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/ksymoops-${PV}.tar.bz2 \
+ file://flags.patch;patch=1"
+S = "${WORKDIR}/ksymoops-${PV}"
+
+do_install () {
+ install -d ${D}/${bindir}
+ install -m 0755 ksymoops ${D}/${bindir}/ksymoops
+ install -d ${D}/${mandir}/man8
+ install -m 0755 ksymoops.8 ${D}/${mandir}/man8/ksymoops.8
+}