aboutsummaryrefslogtreecommitdiffstats
path: root/packages/kbdd
diff options
context:
space:
mode:
authorErik Hovland <erik@hovland.org>2006-05-24 19:03:09 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-05-24 19:03:09 +0000
commitde1d2a3d79046f46866116bbb47b5f5b1391938d (patch)
tree86c1608da825d971942e366918b9d1d4e9ce97a2 /packages/kbdd
parent6db44b3bfd1f07a773ad03e28d6d4b88d0b0dfc2 (diff)
downloadopenembedded-de1d2a3d79046f46866116bbb47b5f5b1391938d.tar.gz
The init script says it has restart in the usage. But it didn't
have a restart in its list of cases. So this patch adds it.
Diffstat (limited to 'packages/kbdd')
-rw-r--r--packages/kbdd/files/kbdd.init5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/kbdd/files/kbdd.init b/packages/kbdd/files/kbdd.init
index c9e0a0deac..00aec07aa7 100644
--- a/packages/kbdd/files/kbdd.init
+++ b/packages/kbdd/files/kbdd.init
@@ -12,6 +12,11 @@ case $1 in
killall kbdd
;;
+'restart')
+ $0 stop
+ $o start
+ ;;
+
*)
echo "usage: $0 { start | stop | restart }"
;;