Browse Source

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 months ago
parent
commit
9c2947ff1e
1 changed files with 2 additions and 0 deletions
  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