summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--recipes/freesmartphone/fsodeviced/fsodeviced3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/freesmartphone/fsodeviced/fsodeviced b/recipes/freesmartphone/fsodeviced/fsodeviced
index 77fabb6efb..2e701eda29 100644
--- a/recipes/freesmartphone/fsodeviced/fsodeviced
+++ b/recipes/freesmartphone/fsodeviced/fsodeviced
@@ -8,13 +8,14 @@
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=fsodeviced
+NICENESS=-19
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
echo -n "Starting fsodeviced: "
- start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -x /usr/bin/fsodeviced
+ start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -N ${NICENESS} -x /usr/bin/fsodeviced
if [ $? = 0 ]; then
echo "(ok)"
else