summaryrefslogtreecommitdiff
path: root/devel/linux-js/files/linux_js.sh.in
diff options
context:
space:
mode:
authorJean-Yves Lefort <jylefort@FreeBSD.org>2006-03-21 16:03:50 +0000
committerJean-Yves Lefort <jylefort@FreeBSD.org>2006-03-21 16:03:50 +0000
commitcf569742410088cc644b46110fc28567a0cab7fc (patch)
treef0d22ac874daa63d16340284998343e5fa5448e8 /devel/linux-js/files/linux_js.sh.in
parentAdd missing perl dep. (diff)
Version 2.0:
- USB joystick support has been added - Calling select() with a large timeout did not work properly: fixed - Short reads (< sizeof(struct js_event)) did not work: fixed - The JSIOCGCORR/JSCIOCSCORR ioctls now handle all the axes - Each joystick is now presented as a separate js device - A manual page has been added
Notes
Notes: svn path=/head/; revision=157891
Diffstat (limited to 'devel/linux-js/files/linux_js.sh.in')
-rw-r--r--devel/linux-js/files/linux_js.sh.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/devel/linux-js/files/linux_js.sh.in b/devel/linux-js/files/linux_js.sh.in
new file mode 100644
index 000000000000..9768f1b3aa31
--- /dev/null
+++ b/devel/linux-js/files/linux_js.sh.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+# $FreeBSD$
+
+# PROVIDE: linux_js
+# KEYWORD: shutdown
+
+linux_js_enable=${linux_js_enable-"NO"}
+
+. %%RC_SUBR%%
+
+name="linux_js"
+rcvar=`set_rcvar`
+start_cmd="linux_js_start"
+stop_cmd="linux_js_stop"
+
+linux_js_start()
+{
+ echo "Starting ${name}."
+ kldload linux_js
+}
+
+linux_js_stop()
+{
+ echo "Stopping ${name}."
+ kldunload linux_js
+}
+
+load_rc_config $name
+run_rc_command "$1"