From: Qingfang Deng Date: Thu, 21 May 2026 01:53:46 +0000 (+0800) Subject: kernel: modules: mppe: clean up X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F23464%2Fhead;p=thirdparty%2Fopenwrt.git 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 --- 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