summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Chaumette <dchaumette@mandriva.com>2004-05-14 17:04:45 +0000
committerDamien Chaumette <dchaumette@mandriva.com>2004-05-14 17:04:45 +0000
commit16da5b6d8c4c51943fbbc08a7f1c2bf7da929cc4 (patch)
tree86650a885a9a7d06bbad211236bb6ccf39654ec0
parentb6fb9a1754ec7c16567afeb414eda5dd0cc43bce (diff)
downloaddrakx-backup-do-not-use-16da5b6d8c4c51943fbbc08a7f1c2bf7da929cc4.tar
drakx-backup-do-not-use-16da5b6d8c4c51943fbbc08a7f1c2bf7da929cc4.tar.gz
drakx-backup-do-not-use-16da5b6d8c4c51943fbbc08a7f1c2bf7da929cc4.tar.bz2
drakx-backup-do-not-use-16da5b6d8c4c51943fbbc08a7f1c2bf7da929cc4.tar.xz
drakx-backup-do-not-use-16da5b6d8c4c51943fbbc08a7f1c2bf7da929cc4.zip
Fixes to use speedtouch kernel driver / drop userspace one
(happy modem with both 2.4 and 2.6) - fix modem_run parameters to use kernel driver - change/move pty declaration in /etc/ppp/peers/adsl - plugin pppoatm has to be set and vpi.vci too - new net_cnx_{up/down}, speedtouch.sh seems to be useless now
-rw-r--r--perl-install/network/adsl.pm25
1 files changed, 15 insertions, 10 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm
index 9dab12255..d5705d5da 100644
--- a/perl-install/network/adsl.pm
+++ b/perl-install/network/adsl.pm
@@ -134,17 +134,17 @@ sync
speedtouch =>
{
- start => '/usr/sbin/modem_run -v 0 -f /usr/share/speedtouch/mgmt.o',
+ start => '/usr/sbin/modem_run -k -n 2 -f /usr/share/speedtouch/mgmt.o',
overide_script => 1,
server => {
- pppoa => '"/usr/sbin/pppoa3 -e 1 -c -vpi ' . hex($netc->{vpi}) . " -vci " . hex($netc->{vci}) . '"',
+ pppoa => '"/usr/sbin/pppoa3 -e 1 -c"
+plugin pppoatm.so
+' . join('.', hex($netc->{vpi}), hex($netc->{vci})),
},
ppp_options => qq(
sync
noaccomp),
aliases => [
- # disable kernel driver, we use userland stuff but for firmware upload
- if_(c::kernel_version() =~ /^\Q2.4/, ['speedtch', 'off']),
['char-major-108', 'ppp_generic'],
['tty-ldisc-3', 'ppp_async'],
['tty-ldisc-13', 'n_hdlc'],
@@ -238,7 +238,6 @@ defaultroute)
output("$::prefix/etc/ppp/peers/adsl",
qq(noauth
noipdefault
-pty $modems{$adsl_device}{server}{$adsl_type}
$modems{$adsl_device}{ppp_options}
kdebug 1
nopcomp
@@ -249,6 +248,7 @@ maxfail 25
persist
usepeerdns
defaultroute
+pty $modems{$adsl_device}{server}{$adsl_type}
user "$adsl->{login}"
));
@@ -284,8 +284,6 @@ user "$adsl->{login}"
set_cnx_script($netc, "adsl", join("\n",
"/sbin/route del default",
$modems{$adsl_device}{start},
- # /usr/sbin/pppd call adsl
- #$modems{$adsl_device}{server}{$adsl_type} ||
"/usr/sbin/pppd file /etc/ppp/peers/adsl $modems{$adsl_device}{pppd_options}",
$ppp_options{$adsl_type}{connect}
),
@@ -336,9 +334,16 @@ INTERFACE=`$modems{$adsl_device}{get_intf}`
} elsif ($adsl_device eq 'speedtouch') {
# speedtouch really is used only with pppoa, let its own script handle firmware upload and the like:
set_cnx_script($netc, 'adsl',
- qq(/sbin/route del default
-/usr/share/speedtouch/speedtouch.sh start\n),
- "/usr/share/speedtouch/speedtouch.sh stop\n",
+ qq(/sbin/route del default 2>/dev/null
+/usr/sbin/modem_run -k -n 2 -f /usr/share/speedtouch/mgmt.o
+pppd call adsl
+
+for i in 0 1 2 3 4; do
+ /sbin/ifconfig | grep -q 'ppp' && exit
+ sleep 3
+done
+exit 1\n),
+ "/usr/bin/killall pppd\n",
$netc->{adsltype});
}