diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-28 12:58:29 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-28 12:58:29 +0200 |
commit | 3e1c67b68f5a878d726526070a0a03675ec992e1 (patch) | |
tree | 6ac65bfd7bd4b3b633325dbc4b12b961a96304da /package/kodi/files | |
parent | 461bb11b91a766ea607b20558a3315e7e6f6e894 (diff) | |
parent | 76b0c60b5a04647a13cf0fd975ab84972ae1e51d (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/kodi/files')
-rw-r--r-- | package/kodi/files/xbmc.init | 30 | ||||
-rw-r--r-- | package/kodi/files/xbmc.postinst | 3 |
2 files changed, 33 insertions, 0 deletions
diff --git a/package/kodi/files/xbmc.init b/package/kodi/files/xbmc.init new file mode 100644 index 000000000..bbe65c1c2 --- /dev/null +++ b/package/kodi/files/xbmc.init @@ -0,0 +1,30 @@ +#!/bin/sh +#PKG xbmc +#INIT 95 + +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${xbmc:-NO}" = x"NO" && exit 0 + test x"$xbmc" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start + exec sh $0 start + ;; +start) + export LD_LIBRARY_PATH=/opt/vc/lib + xbmc & + ;; +stop) + kill $(pgrep -f /usr/lib/xbmc/xbmc.bin) + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "Usage: $0 {start | stop | restart}" + exit 1 + ;; +esac +exit $? diff --git a/package/kodi/files/xbmc.postinst b/package/kodi/files/xbmc.postinst new file mode 100644 index 000000000..45274da68 --- /dev/null +++ b/package/kodi/files/xbmc.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +add_rcconf xbmc NO |