mirror of
https://git.yoctoproject.org/poky
synced 2026-06-30 20:13:39 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
10 lines
116 B
Bash
10 lines
116 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "quick" ]
|
|
then
|
|
touch /var/run/ppp-quick
|
|
shift
|
|
fi
|
|
|
|
/usr/sbin/pppd call ${1:-provider}
|