1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 00:21:51 +02:00

fix kmod-usb-hid package build

SVN-Revision: 7378
This commit is contained in:
Felix Fietkau 2007-05-28 18:23:49 +00:00
parent df988938e6
commit 53c998915b

@ -333,17 +333,15 @@ endef
$(eval $(call KernelPackage,usb-net-asix))
define KernelPackage/usb-hid
$(call usbdep,@LINUX_2_6)
$(call usbdep,@LINUX_2_6 evdev)
TITLE:=Support for USB Human Input Devices
DESCRIPTION:=Kernel support for USB HID devices such as keyboards and mice
KCONFIG:=$(CONFIG_USB_HID)
AUTOLOAD:=$(call AutoLoad,70,usbhid evdev)
AUTOLOAD:=$(call AutoLoad,70,usbhid)
endef
define KernelPackage/usb-hid/2.6
FILES:= \
$(LINUX_DIR)/drivers/usb/input/usbhid.ko \
$(LINUX_DIR)/drivers/input/evdev.ko
FILES:=$(LINUX_DIR)/drivers/usb/input/usbhid.ko
endef
$(eval $(call KernelPackage,usb-hid))