From e75f39c55fe769bfb28b4d3cbca7d6197873160d Mon Sep 17 00:00:00 2001 From: blogic Date: Mon, 16 Feb 2015 08:00:17 +0000 Subject: [PATCH 1/1] linux: fix kmod-usb-net-* for >= 3.17 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Kernel commit 1bb5a356c3ea ("net: reduce USB network driver config options.") hid the USB network drivers behind the new config symbol CONFIG_USB_NET_DRIVERS. Signed-off-by: Bjørn Mork git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44460 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/kernel/linux/modules/usb.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk index 431c7baa2c..6faa437bca 100644 --- a/package/kernel/linux/modules/usb.mk +++ b/package/kernel/linux/modules/usb.mk @@ -992,7 +992,8 @@ $(eval $(call KernelPackage,usb-atm-cxacru)) define KernelPackage/usb-net TITLE:=Kernel modules for USB-to-Ethernet convertors DEPENDS:=+kmod-mii - KCONFIG:=CONFIG_USB_USBNET + KCONFIG:=CONFIG_USB_USBNET \ + CONFIG_USB_NET_DRIVERS@ge3.18 AUTOLOAD:=$(call AutoProbe,usbnet) FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/usbnet.ko $(call AddDepends/usb) -- 2.11.0