summaryrefslogtreecommitdiff
path: root/recipes-connectivity/ppp/files/init.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-connectivity/ppp/files/init.patch')
-rw-r--r--recipes-connectivity/ppp/files/init.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes-connectivity/ppp/files/init.patch b/recipes-connectivity/ppp/files/init.patch
index 00ae09a..333c428 100644
--- a/recipes-connectivity/ppp/files/init.patch
+++ b/recipes-connectivity/ppp/files/init.patch
@@ -7,9 +7,9 @@ diff -Naru orig/init new/init
. /etc/init.d/functions
+. /etc/default/ppp
+if [[ $RADIORESETWAIT == yes ]] ; then
-+ . /usr/libexec/ppp/wait_for_reset
++ WAITFORRESET=/usr/bin/mts-wait-for-cell-reset
+else
-+ function wait_for_reset { :; }
++ WAITFORRESET=":"
+fi
+
+mkdir -p /run/ppp || true
@@ -21,7 +21,7 @@ diff -Naru orig/init new/init
case "$1" in
start)
echo -n "Starting up PPP link: pppd"
-+ wait_for_reset
++ ${WAITFORRESET}
if [ "$RUNFILE" = "1" ]; then
+ logger "ppp_on_boot"
/etc/ppp/ppp_on_boot
@@ -35,13 +35,13 @@ diff -Naru orig/init new/init
+ if [ "$RUNFILE" = "1" ]; then
poff
sleep 5
-+ wait_for_reset
++ ${WAITFORRESET}
/etc/ppp/ppp_on_boot
- else
+ else
poff provider
sleep 5
-+ wait_for_reset
++ ${WAITFORRESET}
pppd call provider
fi
echo "."