mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 15:56:49 +00:00
kernel: fix packaging of 8250.ko with Linux 3.x This commit fixes build breakage in package/kernel leading to missing subsequent kmods like kmod-usb-serial, this should fix the missing packages in ar71xx builds.
SVN-Revision: 31477
This commit is contained in:
parent
a447f1810c
commit
68a6a13517
@ -896,7 +896,15 @@ define KernelPackage/serial-8250
|
|||||||
CONFIG_SERIAL_8250_SHARE_IRQ=y \
|
CONFIG_SERIAL_8250_SHARE_IRQ=y \
|
||||||
CONFIG_SERIAL_8250_DETECT_IRQ=n \
|
CONFIG_SERIAL_8250_DETECT_IRQ=n \
|
||||||
CONFIG_SERIAL_8250_RSA=n
|
CONFIG_SERIAL_8250_RSA=n
|
||||||
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.3)),1)
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/tty/serial/8250/8250.ko
|
||||||
|
else
|
||||||
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.38)),1)
|
||||||
FILES:=$(LINUX_DIR)/drivers/tty/serial/8250.ko
|
FILES:=$(LINUX_DIR)/drivers/tty/serial/8250.ko
|
||||||
|
else
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/serial/8250.ko
|
||||||
|
endif
|
||||||
|
endif
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/serial-8250/description
|
define KernelPackage/serial-8250/description
|
||||||
|
Loading…
Reference in New Issue
Block a user