From patchwork Wed Dec 13 21:35:01 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Filip Moc X-Patchwork-Id: 848254 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133; helo=bombadil.infradead.org; envelope-from=lede-dev-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="Lwe4UanW"; dkim-atps=neutral Received: from bombadil.infradead.org (bombadil.infradead.org [65.50.211.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yxqkd0cV3z9s03 for ; Thu, 14 Dec 2017 08:36:09 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:Subject:MIME-Version:Message-ID:To:From :Date:Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=946U57c+h5c47VVslcJdnTprVP5Uw8e8VRkPklEOQWg=; b=Lwe4UanW9G3yzk DmvuqD/nG78r/m4t2YMeI9O+LYkD/jNV/jyOkH6I6Ad0RlGWuvlJO+/zeXcjNIF/MEn51djCtvteA KkObJOTxkFCIOzlVNbJ2m6+a/nJXri0OUzrqQnaR6zSxgrCxE9GNoKqnk9gUt3/2TbeLEIsXHk0Lh unkclDpDRemCtyxBFUJH1j0kiqynCzq71o3oBSAsvaR9Qrt9xlWIc3TVXMeTKc5K1F351n7jhpYvi lzqXrc5Vq+sfXzL5xr+NYy6pTeb+LVbbfSVKmr1pc+SIbQ+WS8nYvZa+dE16CuITZmBVXCp43s8jA 0pTM+TS7+9wmm1ROB9nQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux)) id 1ePEh3-0002xR-W5; Wed, 13 Dec 2017 21:35:58 +0000 Received: from hosting.moc6.cz ([92.62.239.229] helo=moc6.cz) by bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux)) id 1ePEgf-0002Mc-UC for lede-dev@lists.infradead.org; Wed, 13 Dec 2017 21:35:36 +0000 Received: by moc6.cz (Postfix, from userid 1025) id 839FB232001E; Wed, 13 Dec 2017 22:35:01 +0100 (CET) Date: Wed, 13 Dec 2017 22:35:01 +0100 From: Filip Moc To: lede-dev@lists.infradead.org Message-ID: <20171213213501.o7qztsmnl6k623wu@moc6.cz> MIME-Version: 1.0 Content-Disposition: inline User-Agent: NeoMutt/20170113 (1.7.2) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20171213_133534_145429_B6EFFDFE X-CRM114-Status: UNSURE ( 5.27 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.4.1 on bombadil.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Subject: [LEDE-DEV] [PATCH] kernel: add kmod-fou X-BeenThere: lede-dev@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "Lede-dev" Errors-To: lede-dev-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org Signed-off-by: Filip Moc --- package/kernel/linux/modules/netsupport.mk | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk index e4740428af..128fd29876 100644 --- a/package/kernel/linux/modules/netsupport.mk +++ b/package/kernel/linux/modules/netsupport.mk @@ -432,6 +432,28 @@ endef $(eval $(call KernelPackage,sit)) +define KernelPackage/fou + SUBMENU:=$(NETWORK_SUPPORT_MENU) + TITLE:=FOU and GUE decapsulation + DEPENDS:= \ + +kmod-iptunnel \ + +kmod-udptunnel4 \ + +IPV6:kmod-udptunnel6 + KCONFIG:= \ + CONFIG_NET_FOU \ + CONFIG_NET_FOU_IP_TUNNELS=y + FILES:=$(LINUX_DIR)/net/ipv4/fou.ko + AUTOLOAD:=$(call AutoLoad,32,fou) +endef + +define KernelPackage/fou/description + Kernel module for FOU and GUE decapsulation. + Requires Kernel 3.18 or newer. +endef + +$(eval $(call KernelPackage,fou)) + + define KernelPackage/ip6-tunnel SUBMENU:=$(NETWORK_SUPPORT_MENU) TITLE:=IP-in-IPv6 tunnelling