From: nbd Date: Sat, 20 Aug 2005 14:30:28 +0000 (+0000) Subject: add support for pppoe over atheros wlan X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/97a4d21103dd06870c6e1cffed016fc901111114 add support for pppoe over atheros wlan git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1702 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/ppp/Makefile b/package/ppp/Makefile index f248412ae..0fed25c91 100644 --- a/package/ppp/Makefile +++ b/package/ppp/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ppp PKG_VERSION:=2.4.3 -PKG_RELEASE:=5 +PKG_RELEASE:=6 PKG_MD5SUM:=848f6c3cafeb6074ffeb293c3af79b7c PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/ diff --git a/package/ppp/patches/205-pppoe_iface_name.patch b/package/ppp/patches/205-pppoe_iface_name.patch index 522d5878a..0961eca62 100644 --- a/package/ppp/patches/205-pppoe_iface_name.patch +++ b/package/ppp/patches/205-pppoe_iface_name.patch @@ -6,7 +6,7 @@ diff -ruN ppp-2.4.3-orig/pppd/plugins/rp-pppoe/plugin.c ppp-2.4.3-3/pppd/plugins cmd += 4; } else if (strlen(cmd) < 4 - || (strncmp(cmd, "eth", 3) && strncmp(cmd, "nas", 3) -+ || (strncmp(cmd, "eth", 3) && strncmp(cmd, "nas", 3) && strncmp(cmd, "vlan", 4) ++ || (strncmp(cmd, "eth", 3) && strncmp(cmd, "nas", 3) && strncmp(cmd, "vlan", 4) && strncmp(cmd, "ath", 3) && strncmp(cmd, "tap", 3) && strncmp(cmd, "br", 2))) { return 0; }