summaryrefslogtreecommitdiff
path: root/recipes/kbdd
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2009-03-19 20:56:09 +0100
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2009-03-19 20:56:09 +0100
commit6a21d65d2840c58cfa7cd749a04669d8f7980646 (patch)
tree00b1aa153b69cda8cf9406c4700fd7730c34d3a5 /recipes/kbdd
parentdcfe7349b369a87881cf1fa43085d9e9c5609fcf (diff)
parent6f854d71c347475d53d5080a5490625345d95d12 (diff)
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/kbdd')
-rw-r--r--recipes/kbdd/files/kbdd-modules3
-rw-r--r--recipes/kbdd/files/kbdd.conf7
-rw-r--r--recipes/kbdd/files/kbdd.init25
-rw-r--r--recipes/kbdd/kbdd_svn.bb44
4 files changed, 79 insertions, 0 deletions
diff --git a/recipes/kbdd/files/kbdd-modules b/recipes/kbdd/files/kbdd-modules
new file mode 100644
index 0000000000..5d6c01cb23
--- /dev/null
+++ b/recipes/kbdd/files/kbdd-modules
@@ -0,0 +1,3 @@
+keybdev
+uinput
+
diff --git a/recipes/kbdd/files/kbdd.conf b/recipes/kbdd/files/kbdd.conf
new file mode 100644
index 0000000000..b59d701137
--- /dev/null
+++ b/recipes/kbdd/files/kbdd.conf
@@ -0,0 +1,7 @@
+# This is the default config file for kbdd
+# Only lines starting with "port:" or "type:" are parsed,
+# the rest are ignored.
+
+# NOTE - you must edit and uncomment the lines below
+#port: /dev/tts/0
+#type: foldable
diff --git a/recipes/kbdd/files/kbdd.init b/recipes/kbdd/files/kbdd.init
new file mode 100644
index 0000000000..00aec07aa7
--- /dev/null
+++ b/recipes/kbdd/files/kbdd.init
@@ -0,0 +1,25 @@
+#!/bin/sh
+#
+
+. /etc/profile
+
+case $1 in
+'start')
+ /usr/sbin/kbdd -c /etc/kbdd.conf > /dev/null 2>&1 &
+ ;;
+
+'stop')
+ killall kbdd
+ ;;
+
+'restart')
+ $0 stop
+ $o start
+ ;;
+
+*)
+ echo "usage: $0 { start | stop | restart }"
+ ;;
+
+esac
+
diff --git a/recipes/kbdd/kbdd_svn.bb b/recipes/kbdd/kbdd_svn.bb
new file mode 100644
index 0000000000..b9468593da
--- /dev/null
+++ b/recipes/kbdd/kbdd_svn.bb
@@ -0,0 +1,44 @@
+DESCRIPTION = "User-space keyboard daemon for external keyboards"
+HOMEPAGE = "http://project.linuxtogo.org/projects/kbdd"
+SECTION = "console/utils"
+LICENSE = "GPLv2"
+DEPENDS = "virtual/kernel"
+RRECOMMENDS_${PN} = "kernel-module-keybdev kernel-module-uinput"
+PV = "0.12+svn${SRCDATE}"
+PR = "r0"
+
+SRC_URI = "svn://projects.linuxtogo.org/svn/kbdd;module=trunk;proto=svn \
+ file://kbdd.init \
+ file://kbdd.conf \
+ file://kbdd-modules"
+S = "${WORKDIR}/trunk"
+
+inherit update-rc.d
+
+INITSCRIPT_NAME = "kbdd"
+INITSCRIPT_PARAMS = "defaults"
+
+do_compile() {
+ oe_runmake CFLAGS="${CFLAGS} -DVERSION=\\\"${PV}\\\""
+}
+
+do_install() {
+ install -d ${D}${sbindir}
+ install -d ${D}${docdir}/kbdd/
+ install -m 0755 kbdd ${D}${sbindir}/
+ install -m 0644 README ${D}${docdir}/kbdd/
+ install -d ${D}${sysconfdir}
+ install -m 0644 ${WORKDIR}/kbdd.conf ${D}${sysconfdir}
+ install -d ${D}${sysconfdir}/init.d
+ install -m 0755 ${WORKDIR}/kbdd.init ${D}${sysconfdir}/init.d/kbdd
+ install -d ${D}${sysconfdir}/modutils
+ install -m 0644 ${WORKDIR}/kbdd-modules ${D}${sysconfdir}/modutils/
+}
+
+pkg_postinst () {
+ update-modules
+}
+
+pkg_postrm () {
+ update-modules
+}