summaryrefslogtreecommitdiff
path: root/recipes/trdx-config/files
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2012-07-19 18:03:49 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2012-07-19 18:03:49 +0200
commit061469c0a172ba27b95dbe1294d3f3d8a3638e8e (patch)
tree99e7d5a7d56e0b5a821e78fed9797e993716d315 /recipes/trdx-config/files
parenta905fd65a355ca17ea53545a286052e4429d27d2 (diff)
remove nv odm kit, including init.d/nvrm_daemon script
Diffstat (limited to 'recipes/trdx-config/files')
-rwxr-xr-xrecipes/trdx-config/files/nvrm_daemon37
1 files changed, 0 insertions, 37 deletions
diff --git a/recipes/trdx-config/files/nvrm_daemon b/recipes/trdx-config/files/nvrm_daemon
deleted file mode 100755
index c3a9268..0000000
--- a/recipes/trdx-config/files/nvrm_daemon
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-#
-# Start or stop the Nvidia Ressource Manager Daemon.
-#
-# Based on debian apmd scripts
-
-PATH=/bin:/usr/bin:/sbin:/usr/sbin
-
-[ -f /etc/default/rcS ] && . /etc/default/rcS
-
-case "$1" in
- start)
- echo -n "Nvidia Ressource Manager Daemon: "
- start-stop-daemon -S -x /bin/nvrm_daemon -- --daemon &
- if [ $? = 0 ]; then
- echo "nvrm_daemon."
- else
- echo "(failed.)"
- fi
- ;;
- stop)
- echo -n "Nvidia Ressource Manager Daemon: "
- start-stop-daemon -K -x /bin/nvrm_daemon
- echo "nvrm_daemon."
- ;;
- restart|force-reload)
- $0 stop
- $0 start
- exit
- ;;
- *)
- echo "Usage: /etc/init.d/nvrm_daemon {start|stop|restart|force-reload}"
- exit 1
- ;;
-esac
-
-exit 0