View Single Post
Posts: 146 | Thanked: 149 times | Joined on Apr 2010
#8
This is my /etc/event.d/imhere:
Code:
description "Starts the imhere application"

start on started hildon-desktop
exec /etc/init.d/imhere start
stop on starting shutdown
This is my current /etc.init.d/imhere:
Code:
#!/bin/sh

case "$1" in
  start)
    echo "IMHERE INIT CALLED" >> /home/user/startuplog
    /usr/bin/imhere
	;;
  *)
esac

echo "IMHERE INIT EXITING" >> /home/user/startuplog
exit 0
after booting my device I get following output in startuplog:
Code:
MHERE INIT CALLED
IMHERE INIT EXITING