diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-25 13:43:15 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-25 13:43:15 +0000 |
commit | 69822a83687d3cb2a5035ceea55bdc658d9674a7 (patch) | |
tree | b2691b7e80813ef21b30a99c1b6685305c394f45 /package/kernel | |
parent | 7a2e03f5e33f0ee3acf0d61530437a86890a52d9 (diff) | |
download | upstream-69822a83687d3cb2a5035ceea55bdc658d9674a7.tar.gz upstream-69822a83687d3cb2a5035ceea55bdc658d9674a7.tar.bz2 upstream-69822a83687d3cb2a5035ceea55bdc658d9674a7.zip |
[package] 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.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31477 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/other.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index abac4811d4..d3450cf73b 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -896,7 +896,15 @@ define KernelPackage/serial-8250 CONFIG_SERIAL_8250_SHARE_IRQ=y \ CONFIG_SERIAL_8250_DETECT_IRQ=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 + else + FILES:=$(LINUX_DIR)/drivers/serial/8250.ko + endif +endif endef define KernelPackage/serial-8250/description |