diff options
author | Daniel Willmann <daniel@totalueberwachung.de> | 2007-03-02 10:15:21 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-03-02 10:15:21 +0000 |
commit | f1e577d4fb289926eea6d44042c245cbcfdeefb2 (patch) | |
tree | 823cfcbf17cf787cf394d35ed6f38c4b65350090 /packages/ezx/opentapi | |
parent | 1d8d537f48d92a558c243f49c39f3d70a483dd5e (diff) |
opentapi: start up real early to initialize the BP properly to stop the phone shutting of because udev is so slow
Diffstat (limited to 'packages/ezx/opentapi')
-rw-r--r-- | packages/ezx/opentapi/opentapi.init | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/ezx/opentapi/opentapi.init b/packages/ezx/opentapi/opentapi.init index 593411e755..0b41418e00 100644 --- a/packages/ezx/opentapi/opentapi.init +++ b/packages/ezx/opentapi/opentapi.init @@ -37,8 +37,10 @@ start_it_up() fi echo -n "Starting $DESC: " - start-stop-daemon --start --quiet --pidfile $PIDFILE \ + start-stop-daemon --start --background --quiet --pidfile $PIDFILE \ --exec $DAEMON -- --system $PARAMS + # We need to sleep here because opening the mux devices takes some time + sleep 15 echo "$NAME." if [ -d $EVENTDIR ]; then run-parts --arg=start $EVENTDIR |