diff options
author | Christian Pointner <equinox@spreadspace.org> | 2015-10-14 14:53:53 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2015-10-14 14:53:53 +0200 |
commit | a72c8af2a59a8103b54d3cd7e644e744d6c1ac42 (patch) | |
tree | 5752098ef4caa5541e1e33fa6fcc2b11d879a0f1 /openwrt/dolmetsch-ctl/files/dolmetschctl.init | |
parent | merged app sources to single folder (diff) |
added first version of an openwrt package
Diffstat (limited to 'openwrt/dolmetsch-ctl/files/dolmetschctl.init')
-rwxr-xr-x | openwrt/dolmetsch-ctl/files/dolmetschctl.init | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/openwrt/dolmetsch-ctl/files/dolmetschctl.init b/openwrt/dolmetsch-ctl/files/dolmetschctl.init new file mode 100755 index 0000000..7a2bfc9 --- /dev/null +++ b/openwrt/dolmetsch-ctl/files/dolmetschctl.init @@ -0,0 +1,14 @@ +#!/bin/sh /etc/rc.common + +USE_PROCD=1 + +PROG=/usr/bin/dolmetschctl + +start_service() { + procd_open_instance + procd_set_param command $PROG -x qu24 -d hw:0,0,0 -o 1234 + procd_set_param respawn + procd_set_param stdout 1 + procd_set_param stderr 1 + procd_close_instance +} |