mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-01 13:40:04 +00:00
rp-pppoe: update to 3.13
Removed patch was upstreamed. Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
committed by
Khem Raj
parent
09ee9889e4
commit
05138d26fe
@@ -1,31 +0,0 @@
|
|||||||
From a6a85ec5c85cbd3c86743b6e2fa391198869bff8 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Tom Rini <tom_rini@mentor.com>
|
|
||||||
Date: Wed, 27 Jul 2011 03:46:52 +0000
|
|
||||||
Subject: [PATCH] rp-pppoe: Port from oe.dev
|
|
||||||
|
|
||||||
Relax restrictions on the PPPoE src address, as per debian bug
|
|
||||||
293811:
|
|
||||||
|
|
||||||
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=293811
|
|
||||||
|
|
||||||
Upstream-Status: Inappropriate [Backport from Debian]
|
|
||||||
|
|
||||||
---
|
|
||||||
src/discovery.c | 4 ++--
|
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/discovery.c b/src/discovery.c
|
|
||||||
index 7ee259d..5213a37 100644
|
|
||||||
--- a/src/discovery.c
|
|
||||||
+++ b/src/discovery.c
|
|
||||||
@@ -472,8 +472,8 @@ waitForPADO(PPPoEConnection *conn, int timeout)
|
|
||||||
if (!packetIsForMe(conn, &packet)) continue;
|
|
||||||
|
|
||||||
if (packet.code == CODE_PADO) {
|
|
||||||
- if (NOT_UNICAST(packet.ethHdr.h_source)) {
|
|
||||||
- printErr("Ignoring PADO packet from non-unicast MAC address");
|
|
||||||
+ if (BROADCAST(packet.ethHdr.h_source)) {
|
|
||||||
+ printErr("Ignoring broadcast PADO packet");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
#ifdef PLUGIN
|
|
||||||
+3
-4
@@ -6,10 +6,9 @@ LIC_FILES_CHKSUM = "file://doc/LICENSE;md5=a194eaefae2be54ee3221339b10d0581"
|
|||||||
|
|
||||||
PR = "r10"
|
PR = "r10"
|
||||||
|
|
||||||
SRC_URI = "http://www.roaringpenguin.com/files/download/${BP}.tar.gz \
|
SRC_URI = "https://dianne.skoll.ca/projects/rp-pppoe/download/rp-pppoe-${PV}.tar.gz \
|
||||||
file://top-autoconf.patch \
|
file://top-autoconf.patch \
|
||||||
file://configure_in_cross.patch \
|
file://configure_in_cross.patch \
|
||||||
file://pppoe-src-restrictions.patch \
|
|
||||||
file://update-config.patch \
|
file://update-config.patch \
|
||||||
file://dont-swallow-errors.patch \
|
file://dont-swallow-errors.patch \
|
||||||
file://discard-use-of-dnl-in-Makefile.am.patch \
|
file://discard-use-of-dnl-in-Makefile.am.patch \
|
||||||
@@ -22,8 +21,8 @@ SRC_URI = "http://www.roaringpenguin.com/files/download/${BP}.tar.gz \
|
|||||||
file://0002-Enable-support-for-the-kernel-module.patch \
|
file://0002-Enable-support-for-the-kernel-module.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "216eb52b69062b92a64ee37fd71f4b66"
|
SRC_URI[md5sum] = "ec9dccd9a367a1f71f2dc81069796dd8"
|
||||||
SRC_URI[sha256sum] = "00794e04031546b0e9b8cf286f2a6d1ccfc4a621b2a3abb2d7ef2a7ab7cc86c2"
|
SRC_URI[sha256sum] = "8cd6bc71ba46bd5f6eb4daf60220ccdcd991a8525111dee466501b1b9717e676"
|
||||||
|
|
||||||
inherit autotools-brokensep update-rc.d systemd
|
inherit autotools-brokensep update-rc.d systemd
|
||||||
|
|
||||||
Reference in New Issue
Block a user