Kconfig 794 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # GNSS receiver configuration
  3. #
  4. menuconfig GNSS
  5. tristate "GNSS receiver support"
  6. ---help---
  7. Say Y here if you have a GNSS receiver (e.g. a GPS receiver).
  8. To compile this driver as a module, choose M here: the module will
  9. be called gnss.
  10. if GNSS
  11. config GNSS_SERIAL
  12. tristate
  13. config GNSS_CMDLINE_SERIAL
  14. tristate "Command line test driver for GNSS"
  15. depends on SERIAL_DEV_BUS
  16. select GNSS_SERIAL
  17. ---help---
  18. Say Y here if you want to test the GNSS subsystem but do not have a
  19. way to communicate a binding through firmware such as DT or ACPI.
  20. The correct serdev device and protocol type must be specified on
  21. the module command line.
  22. To compile this driver as a module, choose M here: the module will
  23. be called gnss-cmdline.
  24. If unsure, say N.
  25. endif # GNSS