1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 08:31:19 +02:00

kernel version specific fixups for kmod packages

SVN-Revision: 7700
This commit is contained in:
Felix Fietkau 2007-06-22 04:43:13 +00:00
parent 10a781acf2
commit 024f89c53f

@ -8,12 +8,18 @@
USBMENU:=USB Support
# This is 2.6.22 specific
#ifeq ($(KERNEL),2.4)
USBNET_DIR=usb/net
#else
# USBNET_DIR=net/usb
#endif
ifeq ($(KERNEL),2.4)
USBNET_DIR:=usb/net
endif
ifeq ($(KERNEL_PATCHVER),2.6.21)
USBNET_DIR:=usb/net
endif
USBNET_DIR?=net/usb
ifeq ($(KERNEL_PATCHVER),2.6.21)
USBHID_DIR:=drivers/usb/input
endif
USBHID_DIR?=drivers/hid/usbhid
define usbdep
SUBMENU:=$(USBMENU)
@ -400,7 +406,7 @@ define KernelPackage/usb-hid
endef
define KernelPackage/usb-hid/2.6
FILES:=$(LINUX_DIR)/drivers/usb/input/usbhid.ko
FILES:=$(LINUX_DIR)/$(USBHID_DIR)/usbhid.ko
endef
$(eval $(call KernelPackage,usb-hid))