69 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# GNSS receiver configuration4#5 6menuconfig GNSS7 tristate "GNSS receiver support"8 help9 Say Y here if you have a GNSS receiver (e.g. a GPS receiver).10 11 To compile this driver as a module, choose M here: the module will12 be called gnss.13 14if GNSS15 16config GNSS_SERIAL17 tristate18 19config GNSS_MTK_SERIAL20 tristate "Mediatek GNSS receiver support"21 depends on SERIAL_DEV_BUS22 select GNSS_SERIAL23 help24 Say Y here if you have a Mediatek-based GNSS receiver which uses a25 serial interface.26 27 To compile this driver as a module, choose M here: the module will28 be called gnss-mtk.29 30 If unsure, say N.31 32config GNSS_SIRF_SERIAL33 tristate "SiRFstar GNSS receiver support"34 depends on SERIAL_DEV_BUS35 help36 Say Y here if you have a SiRFstar-based GNSS receiver which uses a37 serial interface.38 39 To compile this driver as a module, choose M here: the module will40 be called gnss-sirf.41 42 If unsure, say N.43 44config GNSS_UBX_SERIAL45 tristate "u-blox GNSS receiver support"46 depends on SERIAL_DEV_BUS47 select GNSS_SERIAL48 help49 Say Y here if you have a u-blox GNSS receiver which uses a serial50 interface.51 52 To compile this driver as a module, choose M here: the module will53 be called gnss-ubx.54 55 If unsure, say N.56 57config GNSS_USB58 tristate "USB GNSS receiver support"59 depends on USB60 help61 Say Y here if you have a GNSS receiver which uses a USB interface.62 63 To compile this driver as a module, choose M here: the module will64 be called gnss-usb.65 66 If unsure, say N.67 68endif # GNSS69