Kconfig 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_SIRF_SERIAL
  14. tristate "SiRFstar GNSS receiver support"
  15. depends on SERIAL_DEV_BUS
  16. ---help---
  17. Say Y here if you have a SiRFstar-based GNSS receiver which uses a
  18. serial interface.
  19. To compile this driver as a module, choose M here: the module will
  20. be called gnss-sirf.
  21. If unsure, say N.
  22. config GNSS_UBX_SERIAL
  23. tristate "u-blox GNSS receiver support"
  24. depends on SERIAL_DEV_BUS
  25. select GNSS_SERIAL
  26. ---help---
  27. Say Y here if you have a u-blox GNSS receiver which uses a serial
  28. interface.
  29. To compile this driver as a module, choose M here: the module will
  30. be called gnss-ubx.
  31. If unsure, say N.
  32. endif # GNSS