From 00b2bbfdbf584c7406f6156ee6c0f9e5915095a7 Mon Sep 17 00:00:00 2001 From: Qingfang Deng Date: Thu, 21 May 2026 09:53:46 +0800 Subject: [PATCH] kernel: modules: mppe: clean up Remove kmod-crypto-arc4 and kmod-crypto-ecb from depends, as it no longer uses skcipher API for encryption. Remove the non-existent CONFIG_PPP_MPPE_MPPC symbol. Signed-off-by: Qingfang Deng Link: https://github.com/openwrt/openwrt/pull/23464 Signed-off-by: Jonas Jelonek --- 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 906ba85821f..815c9437496 100644 --- a/package/kernel/linux/modules/netsupport.mk +++ b/package/kernel/linux/modules/netsupport.mk @@ -694,10 +694,8 @@ $(eval $(call KernelPackage,ipoa)) define KernelPackage/mppe SUBMENU:=$(NETWORK_SUPPORT_MENU) TITLE:=Microsoft PPP compression/encryption - DEPENDS:=kmod-ppp +kmod-crypto-arc4 +kmod-crypto-sha1 +kmod-crypto-ecb - KCONFIG:= \ - CONFIG_PPP_MPPE_MPPC \ - CONFIG_PPP_MPPE + DEPENDS:=kmod-ppp +kmod-crypto-sha1 + KCONFIG:=CONFIG_PPP_MPPE FILES:=$(LINUX_DIR)/drivers/net/ppp/ppp_mppe.ko AUTOLOAD:=$(call AutoProbe,ppp_mppe) endef -- 2.47.3