summaryrefslogtreecommitdiff
path: root/ppp-dsl
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /ppp-dsl
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'ppp-dsl')
-rw-r--r--ppp-dsl/dsl-provider70
-rw-r--r--ppp-dsl/ppp-dsl_0.1.bb0
-rw-r--r--ppp-dsl/ppp_on_boot.dsl14
3 files changed, 0 insertions, 84 deletions
diff --git a/ppp-dsl/dsl-provider b/ppp-dsl/dsl-provider
deleted file mode 100644
index 680dedfdda..0000000000
--- a/ppp-dsl/dsl-provider
+++ /dev/null
@@ -1,70 +0,0 @@
-# Configuration file for PPP, using PPP over Ethernet
-# to connect to a DSL provider.
-#
-# See the manual page pppd(8) for information on all the options.
-
-##
-# Section 1
-#
-# Stuff to configure...
-
-# MUST CHANGE: Uncomment the following line, replacing the user@provider.net
-# by the DSL user name given to your by your DSL provider.
-# (There should be a matching entry in /etc/ppp/pap-secrets with the password.)
-#
-# maybe helpful for germany:
-# T-DSL business PAP "t-online-com/111111111111@t-online-com.de"
-# T-DSL t-online PAP "[ANSCHLUSSKENNUNG][T_ONLINE_NUMMER]#[MITBENUTZER]@t-online.de"
-# hansenet CHAP "net0815@hansenet.de"
-#
-#user ""
-
-# Use the pppoe program to send the ppp packets over the Ethernet link
-# This line should work fine if this computer is the only one accessing
-# the Internet through this DSL connection. This is the right line to use
-# for most people.
-pty "/usr/sbin/pppoe -I eth0 -T 80 -m 1452"
-
-# If the computer connected to the Internet using pppoe is not being used
-# by other computers as a gateway to the Internet, you can try the following
-# line instead, for a small gain in speed:
-#pty "/usr/sbin/pppoe -I eth0 -T 80"
-
-# An even more conservative version of the previous line, if things
-# don't work using -m 1452...
-#pty "/usr/sbin/pppoe -I eth0 -T 80 -m 1412"
-
-
-# The following two options should work fine for most DSL users.
-
-# Assumes that your IP address is allocated dynamically
-# by your DSL provider...
-noipdefault
-# Comment out if you already have the correct default route installed
-defaultroute
-usepeerdns
-
-##
-# Section 2
-#
-# Uncomment if your DSL provider charges by minute connected
-# and you want to use demand-dialing.
-#
-# Disconnect after 300 seconds (5 minutes) of idle time.
-
-#demand
-#idle 300
-
-##
-# Section 3
-#
-# You shouldn't need to change these options...
-
-hide-password
-lcp-echo-interval 20
-lcp-echo-failure 3
-# Override any connect script that may have been set in /etc/ppp/options.
-connect /bin/true
-noauth
-persist
-mtu 1492
diff --git a/ppp-dsl/ppp-dsl_0.1.bb b/ppp-dsl/ppp-dsl_0.1.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/ppp-dsl/ppp-dsl_0.1.bb
+++ /dev/null
diff --git a/ppp-dsl/ppp_on_boot.dsl b/ppp-dsl/ppp_on_boot.dsl
deleted file mode 100644
index f1d5183b38..0000000000
--- a/ppp-dsl/ppp_on_boot.dsl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-#
-
-# The location of the ppp daemon itself (shouldn't need to be changed)
-PPPD=/usr/sbin/pppd
-
-# The Ethernet interface the DSL modem is connected to. If you change this,
-# you also need to edit the file /etc/ppp/peers/dsl-provider.
-INTERFACE=eth0
-
-# Bring the interface up
-/sbin/ifconfig $INTERFACE up
-
-$PPPD call dsl-provider