diff options
Diffstat (limited to 'obsolete-buildroot/sources/openwrt/ipkg')
29 files changed, 404 insertions, 10 deletions
diff --git a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/conffiles b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/conffiles new file mode 100644 index 0000000..d498dc4 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/conffiles @@ -0,0 +1 @@ +/etc/fprobe.conf diff --git a/obsolete-buildroot/sources/openwrt/ipkg/ppp-async-module/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/control index bb38c2a..d17142d 100644 --- a/obsolete-buildroot/sources/openwrt/ipkg/ppp-async-module/CONTROL/control +++ b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/control @@ -1,8 +1,9 @@ -Package: ppp-async-module +Package: fprobe Priority: optional Section: net Version: TBDL Architecture: TBDL Maintainer: Nico <nthill@free.fr> Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ -Description: a PPP async serial channel driver kernel module +Description: a NetFlow probe +Depends: libpcap, libpthread diff --git a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/fprobe.conf b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/fprobe.conf new file mode 100644 index 0000000..3abfba6 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/fprobe.conf @@ -0,0 +1,8 @@ +# Interface to listen on +IFNAME=any + +# NetFlow collector (host:port) +REMOTE=192.168.1.100:2055 + +# Maximum log level (0=EMERG, 1=ALERT, 2=CRIT, 3=ERR, 4=WARNING, 5=NOTICE, 6=INFO, 7=DEBUG) +LOG_LEVEL=3 diff --git a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/init.d/fprobe b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/init.d/fprobe new file mode 100644 index 0000000..2a61fce --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/init.d/fprobe @@ -0,0 +1,23 @@ +#!/bin/sh + +DEFAULT=/etc/fprobe.conf +OPTIONS="" +[ -f $DEFAULT ] && . $DEFAULT +[ -n "$IFNAME" ] && OPTIONS="$OPTIONS -i $IFNAME" +[ -n "$LOG_LEVEL" ] && OPTIONS="$OPTIONS -v $LOG_LEVEL" +[ -n "$REMOTE" ] && OPTIONS="$OPTIONS $REMOTE" + +case $1 in + start) + [ -d /var/run ] || mkdir -p /var/run + /usr/sbin/fprobe $OPTIONS + ;; + stop) + [ -f /var/run/fprobe.pid ] && kill $(cat /var/run/fprobe.pid) >/dev/null 2>&1 + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? diff --git a/obsolete-buildroot/sources/openwrt/ipkg/iproute/ip/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/iproute/ip/CONTROL/control new file mode 100644 index 0000000..ed54f31 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/iproute/ip/CONTROL/control @@ -0,0 +1,9 @@ +Package: ip +Architecture: mipsel +Version: 2.0 +Section: net +Priority: optional +Maintainer: Gerry Rozema <gerryr@rozeware.bc.ca> +Source: http://ftp.debian.org/debian/pool/main/i/iproute/iproute-20010824.orig.tar.gz +Depends: +Description: iproute2 stuff diff --git a/obsolete-buildroot/sources/openwrt/ipkg/iproute/tc/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/iproute/tc/CONTROL/control new file mode 100644 index 0000000..064a52e --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/iproute/tc/CONTROL/control @@ -0,0 +1,9 @@ +Package: tc +Architecture: mipsel +Version: 2.0 +Section: net +Priority: optional +Maintainer: Gerry Rozema <gerryr@rozeware.bc.ca> +Source: http://ftp.debian.org/debian/pool/main/i/iproute/iproute-20010824.orig.tar.gz +Depends: sched-modules +Description: iproute2 stuff diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipt6/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipt6/CONTROL/control new file mode 100644 index 0000000..957732b --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipt6/CONTROL/control @@ -0,0 +1,9 @@ +Package: kmod-ipt6 +Architecture: mipsel +Version: 2.4.20-1 +Section: kernel +Priority: optional +Maintainer: Sebastien NOEL <me@twolife.org> +Source: Embedded in the main OpenWrt buildroot +Depends: kmod-ipv6, ip6tables +Description: ip6tables kernel modules diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipt6/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipt6/CONTROL/rules new file mode 100755 index 0000000..82afed8 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipt6/CONTROL/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +PACKAGE := kmod-ipt6 + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib/ + bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ + modules/2.4.20/kernel/net/ipv6/netfilter/*.o \ + + install -m0755 -d $(MY_INSTALL_DIR)/lib/modules/2.4.20/ipt6 + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/net/ipv6/netfilter/*.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ipt6/ + + rm -rf \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel + + +clean: + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipv6/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipv6/CONTROL/control new file mode 100644 index 0000000..fdeb1c7 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipv6/CONTROL/control @@ -0,0 +1,9 @@ +Package: kmod-ipv6 +Architecture: mipsel +Version: 2.4.20-1 +Section: kernel +Priority: optional +Maintainer: Sebastien NOEL <me@twolife.org> +Source: Embedded in the main OpenWrt buildroot +Depends: +Description: Kernel modules for the IPv6 protocol diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipv6/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipv6/CONTROL/rules new file mode 100755 index 0000000..a1e8111 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ipv6/CONTROL/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +PACKAGE := kmod-ipv6 + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib/ + bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ + modules/2.4.20/kernel/net/ipv6/ipv6.o \ + + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/net/ipv6/ipv6.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ + + rm -rf \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel + + +clean: + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-nfs/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-nfs/CONTROL/control new file mode 100644 index 0000000..87cf409 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-nfs/CONTROL/control @@ -0,0 +1,8 @@ +Package: kmod-nfs +Priority: optional +Section: kernel +Version: 2.4.20-1 +Architecture: mipsel +Maintainer: Nico <nthill@free.fr> +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ +Description: NFS kernel modules diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-nfs/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-nfs/CONTROL/rules new file mode 100755 index 0000000..94129b7 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-nfs/CONTROL/rules @@ -0,0 +1,39 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +PACKAGE := kmod-nfs + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib/ + bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ + modules/2.4.20/kernel/fs/lockd/lockd.o \ + modules/2.4.20/kernel/fs/nfs/nfs.o \ + modules/2.4.20/kernel/net/sunrpc/sunrpc.o \ + + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/fs/lockd/*.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/fs/nfs/*.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/net/sunrpc/*.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ + + rm -rf \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel + + +clean: + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-async/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-async/CONTROL/control new file mode 100644 index 0000000..108ae2b --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-async/CONTROL/control @@ -0,0 +1,8 @@ +Package: kmod-ppp-async +Priority: optional +Section: kernel +Version: 2.4.20-1 +Architecture: mipsel +Maintainer: Nico <nthill@free.fr> +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ +Description: PPP async serial channel driver kernel module diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-async/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-async/CONTROL/rules new file mode 100755 index 0000000..7e137ed --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-async/CONTROL/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +PACKAGE := kmod-ppp-async + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib/ + bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ + modules/2.4.20/kernel/drivers/net/ppp_async.o \ + + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/drivers/net/ppp_async.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ + + rm -rf \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel + + +clean: + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-mppe-mppc/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-mppe-mppc/CONTROL/control new file mode 100644 index 0000000..fb668fd --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-mppe-mppc/CONTROL/control @@ -0,0 +1,8 @@ +Package: kmod-ppp-mppe-mppc +Priority: optional +Section: kernel +Version: 2.4.20-1 +Architecture: mipsel +Maintainer: Nico <nthill@free.fr> +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ +Description: Microsoft PPP compression/encryption (MPPC/MPPE) kernel module diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-mppe-mppc/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-mppe-mppc/CONTROL/rules new file mode 100755 index 0000000..df16839 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-mppe-mppc/CONTROL/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +PACKAGE := kmod-ppp-mppe-mppc + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib/ + bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ + modules/2.4.20/kernel/drivers/net/ppp_mppe_mppc.o \ + + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/drivers/net/ppp_mppe_mppc.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ + + rm -rf \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel + + +clean: + + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-sched/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-sched/CONTROL/control new file mode 100644 index 0000000..f7669af --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-sched/CONTROL/control @@ -0,0 +1,8 @@ +Package: kmod-sched +Priority: optional +Section: kernel +Version: 2.4.20-1 +Architecture: mipsel +Maintainer: Nico <nthill@free.fr> +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ +Description: Traffic Control (TC) kernel modules diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-sched/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-sched/CONTROL/rules new file mode 100755 index 0000000..bf3e6b4 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-sched/CONTROL/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +PACKAGE := kmod-sched + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib/ + bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ + modules/2.4.20/kernel/net/sched/*.o \ + + install -m0755 -d $(MY_INSTALL_DIR)/lib/modules/2.4.20/sched + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/net/sched/*.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/sched/ + + rm -rf \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel + + +clean: + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/control new file mode 100644 index 0000000..3c9ab98 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/control @@ -0,0 +1,8 @@ +Package: kmod-tun +Priority: optional +Section: kernel +Version: 2.4.20-1 +Architecture: mipsel +Maintainer: Nico <nthill@free.fr> +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ +Description: Universal TUN/TAP device driver kernel module diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/rules new file mode 100755 index 0000000..58e95f7 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +PACKAGE := kmod-tun + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib/ + bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ + modules/2.4.20/kernel/drivers/net/tun.o \ + + mv -f \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/drivers/net/tun.o \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/ + + rm -rf \ + $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel + + +clean: + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/nfs-modules/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/libpcap/CONTROL/control index 906b5ff..3ea09b3 100644 --- a/obsolete-buildroot/sources/openwrt/ipkg/nfs-modules/CONTROL/control +++ b/obsolete-buildroot/sources/openwrt/ipkg/libpcap/CONTROL/control @@ -1,8 +1,8 @@ -Package: nfs-modules +Package: libpcap Priority: optional -Section: kernel +Section: libs Version: TBDL Architecture: TBDL Maintainer: Nico <nthill@free.fr> Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ -Description: the NFS kernel modules +Description: a low-level packet capture library diff --git a/obsolete-buildroot/sources/openwrt/ipkg/libpthread/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/libpthread/CONTROL/control new file mode 100644 index 0000000..0bd1da1 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/libpthread/CONTROL/control @@ -0,0 +1,8 @@ +Package: libpthread +Priority: optional +Section: libs +Version: 0.9.26-1 +Architecture: mipsel +Maintainer: Nico <nthill@free.fr> +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ +Description: POSIX threads library diff --git a/obsolete-buildroot/sources/openwrt/ipkg/libpthread/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/libpthread/CONTROL/rules new file mode 100755 index 0000000..9f742d4 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/libpthread/CONTROL/rules @@ -0,0 +1,34 @@ +#!/usr/bin/make -f + +ifeq ($(strip $(TOPDIR)),) +TOPDIR := $(shell pwd)/../../../.. +endif + + +# variables extracted from $(TOPDIR)/Makefile +ARCH:= mipsel +STAGING_DIR=$(TOPDIR)/build_$(ARCH)/staging_dir +REAL_GNU_TARGET_NAME=$(ARCH)-linux-uclibc +TARGET_CROSS=$(STAGING_DIR)/bin/$(REAL_GNU_TARGET_NAME)- +STRIP=$(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note +# could be better if replaced with: +#include $(TOPDIR)/Config + + +PACKAGE := libpthread + +MY_INSTALL_DIR := /tmp/$(PACKAGE) + + +build: + + +install: + rm -rf $(MY_INSTALL_DIR) + install -m0755 -d $(MY_INSTALL_DIR)/lib + install -m0755 $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib/libpthread-0.9.26.so $(MY_INSTALL_DIR)/lib + $(STRIP) $(MY_INSTALL_DIR)/lib/libpthread*.so* + ln -fs libpthread-0.9.26.so $(MY_INSTALL_DIR)/lib/libpthread.so.0 + +clean: + diff --git a/obsolete-buildroot/sources/openwrt/ipkg/ppp/root/etc/ppp/peers/.placeholder b/obsolete-buildroot/sources/openwrt/ipkg/ppp/root/etc/ppp/peers/.placeholder new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/ppp/root/etc/ppp/peers/.placeholder diff --git a/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/CONTROL/conffiles b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/CONTROL/conffiles new file mode 100644 index 0000000..7b134c1 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/CONTROL/conffiles @@ -0,0 +1 @@ +/etc/ppp/pptp-client-options diff --git a/obsolete-buildroot/sources/openwrt/ipkg/ppp-mppe-module/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/CONTROL/control index 418058b..a2f8662 100644 --- a/obsolete-buildroot/sources/openwrt/ipkg/ppp-mppe-module/CONTROL/control +++ b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/CONTROL/control @@ -1,8 +1,9 @@ -Package: ppp-mppe-module +Package: pptp-client Priority: optional Section: net Version: TBDL Architecture: TBDL Maintainer: Nico <nthill@free.fr> Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ -Description: a Microsoft PPP compression/encryption (MPPC/MPPE) kernel module +Description: a Point-to-Point Tunneling Protocol (PPTP) client +Depends: ppp diff --git a/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/root/etc/ppp/peers/pptp-client-sample b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/root/etc/ppp/peers/pptp-client-sample new file mode 100644 index 0000000..9872791 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/root/etc/ppp/peers/pptp-client-sample @@ -0,0 +1,5 @@ +#pty "/usr/sbin/pptp HOST --nolaunchpppd" +#name USERNAME +#remotename PROVIDER +#require-mppe-128 +#file /etc/ppp/pptp-client-options diff --git a/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/root/etc/ppp/pptp-client-options b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/root/etc/ppp/pptp-client-options new file mode 100644 index 0000000..35cea63 --- /dev/null +++ b/obsolete-buildroot/sources/openwrt/ipkg/pptp-client/root/etc/ppp/pptp-client-options @@ -0,0 +1,7 @@ +lock +defaultroute +noauth +nobsdcomp +nodeflate +noipdefault +asyncmap 0 diff --git a/obsolete-buildroot/sources/openwrt/ipkg/tun-module/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/tcpdump/CONTROL/control index 39762a3..ac349d4 100644 --- a/obsolete-buildroot/sources/openwrt/ipkg/tun-module/CONTROL/control +++ b/obsolete-buildroot/sources/openwrt/ipkg/tcpdump/CONTROL/control @@ -1,8 +1,9 @@ -Package: tun-module +Package: tcpdump Priority: optional -Section: kernel +Section: net Version: TBDL Architecture: TBDL Maintainer: Nico <nthill@free.fr> Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ -Description: the Universal TUN/TAP device driver +Description: a powerful network traffic monitoring tool +Depends: libpcap |