Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0
#
# Serial bus device driver configuration
#
menuconfig CONFIG_SERIAL_DEV_BUS
	tristate "Serial device bus"
	help
	  Core support for devices connected via a serial port.

	  Note that you typically also want to enable CONFIG_TTY port controller support.

if CONFIG_SERIAL_DEV_BUS

config CONFIG_SERIAL_DEV_CTRL_TTYPORT
	bool "Serial device TTY port controller"
	help
	  Say Y here if you want to use the Serial device bus with common CONFIG_TTY
	  drivers (e.g. serial drivers).

	  If unsure, say Y.
	depends on CONFIG_TTY
	depends on CONFIG_SERIAL_DEV_BUS != m
	default y

endif