[openwrt/openwrt] kernel: fix kmod-wireguard package fields

LEDE Commits lede-commits at lists.infradead.org
Fri Feb 26 14:43:46 EST 2021


blocktrron pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/0b53d6f7fa8cc35cec5b22e1c64a2407fab6dfe3

commit 0b53d6f7fa8cc35cec5b22e1c64a2407fab6dfe3
Author: Ilya Lipnitskiy <ilya.lipnitskiy at gmail.com>
AuthorDate: Thu Feb 25 10:20:11 2021 -0800

    kernel: fix kmod-wireguard package fields
    
    Use NETWORK_SUPPORT_MENU like all other modules in netsupport.mk. Drop
    SECTION and CATEGORY fields as they are set by default and to match
    other packages in netsupport.mk. Use better TITLE for kmod-wireguard
    (taken from upstream drivers/net/Kconfig).
    
    Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy at gmail.com>
---
 package/kernel/linux/modules/netsupport.mk | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk
index 13f2283944..6bc8ba664a 100644
--- a/package/kernel/linux/modules/netsupport.mk
+++ b/package/kernel/linux/modules/netsupport.mk
@@ -1253,10 +1253,8 @@ $(eval $(call KernelPackage,netlink-diag))
 
 
 define KernelPackage/wireguard
-  SECTION:=kernel
-  CATEGORY:=Kernel modules
-  SUBMENU:=Network Support
-  TITLE:=WireGuard kernel module
+  SUBMENU:=$(NETWORK_SUPPORT_MENU)
+  TITLE:=WireGuard secure network tunnel
   DEPENDS:= \
 	  +kmod-crypto-lib-blake2s \
 	  +kmod-crypto-lib-chacha20poly1305 \



More information about the lede-commits mailing list