From fc80f04360d5c67e4501eb8b292b67864b2a3aad Mon Sep 17 00:00:00 2001 From: Sam Nelson Date: Mon, 9 Feb 2015 22:42:53 +0000 Subject: ti-ipc: Correct error in ti ipc lad daemon startup script - Need to add -l for the log file parameter - Added -- to pass log file as additional parameter Signed-off-by: Sam Nelson Signed-off-by: Denys Dmytriyenko --- recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'recipes-ti/ipc') diff --git a/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh b/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh index 97f870e8..7f0632a7 100644 --- a/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh +++ b/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh @@ -1,14 +1,15 @@ #! /bin/sh tiipclad_daemon=/usr/bin/__LAD_DAEMON__ -tiipclad_params=lad.txt +tiipclad_params="-l lad.txt" test -x "$tiipclad_daemon" || exit 0 case "$1" in start) echo -n "Starting tiipclad daemon" - start-stop-daemon --start --quiet --exec $tiipclad_daemon $tiipclad_params + start-stop-daemon --start --quiet \ + --exec $tiipclad_daemon -- $tiipclad_params echo "." ;; stop) -- cgit v1.2.3-54-g00ecf