Kconfig 533 B

123456789101112131415161718192021222324
  1. #
  2. # Serial bus device driver configuration
  3. #
  4. menuconfig SERIAL_DEV_BUS
  5. tristate "Serial device bus"
  6. help
  7. Core support for devices connected via a serial port.
  8. Note that you typically also want to enable TTY port controller support.
  9. if SERIAL_DEV_BUS
  10. config SERIAL_DEV_CTRL_TTYPORT
  11. bool "Serial device TTY port controller"
  12. help
  13. Say Y here if you want to use the Serial device bus with common TTY
  14. drivers (e.g. serial drivers).
  15. If unsure, say Y.
  16. depends on TTY
  17. depends on SERIAL_DEV_BUS != m
  18. default y
  19. endif