浏览代码

package/usbip: add missing kernel options

usbip needs USBIP_CORE, which needs network support (NET), and both
basic USB support (USB_SUPPORT) and host-side USB support (USB).
Both NET and USB are usually enabled, so they got missed when adding
usbip in f05f2c1ad717 (package/usbip: new package).

Signed-off-by: Yann E. MORIN <yann.morin@orange.com>
Cc: Julien Olivain <ju.o@free.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
Yann E. MORIN 7 月之前
父节点
当前提交
9c2947ff1e
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      package/usbip/usbip.mk

+ 2 - 0
package/usbip/usbip.mk

@@ -32,7 +32,9 @@ USBIP_AUTORECONF = YES
 USBIP_CONFIGURE_OPTS = --without-tcp-wrappers
 
 define USBIP_LINUX_CONFIG_FIXUPS
+	$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
 	$(call KCONFIG_ENABLE_OPT,CONFIG_USB_SUPPORT)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_USB)
 	$(call KCONFIG_ENABLE_OPT,CONFIG_USBIP_CORE)
 endef