1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 11:04:10 +03:00

Add support for the 8250 UART module.

It has been added at the end of other.mk as i couldn't find a better place
for it.

Signed-off-by: Christian Gagneraud <chris@techworks.ie>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30989 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2012-03-18 19:49:22 +00:00
parent bd23f56f7d
commit 92cc682c00

View File

@ -872,3 +872,21 @@ endef
$(eval $(call KernelPackage,nandsim))
define KernelPackage/serial-8250
SUBMENU:=$(OTHER_MENU)
TITLE:=8250 UARTs
KCONFIG:= CONFIG_SERIAL_8250 \
CONFIG_SERIAL_8250_NR_UARTS=16 \
CONFIG_SERIAL_8250_RUNTIME_UARTS=16 \
CONFIG_SERIAL_8250_EXTENDED=y \
CONFIG_SERIAL_8250_MANY_PORTS=y \
CONFIG_SERIAL_8250_SHARE_IRQ=y
FILES:=$(LINUX_DIR)/drivers/tty/serial/8250.ko
endef
define KernelPackage/serial-8250/description
Kernel module for 8250 UART based serial ports.
endef
$(eval $(call KernelPackage,serial-8250))