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-only
#
# CONFIG_GNSS receiver configuration
#

menuconfig CONFIG_GNSS
	tristate "GNSS receiver support"
	---help---
	  Say Y here if you have a CONFIG_GNSS receiver (e.g. a GPS receiver).

	  To compile this driver as a module, choose CONFIG_M here: the module will
	  be called gnss.

if CONFIG_GNSS

config CONFIG_GNSS_SERIAL
	tristate

config CONFIG_GNSS_MTK_SERIAL
	tristate "Mediatek GNSS receiver support"
	depends on CONFIG_SERIAL_DEV_BUS
	select CONFIG_GNSS_SERIAL
	help
	  Say Y here if you have a Mediatek-based CONFIG_GNSS receiver which uses a
	  serial interface.

	  To compile this driver as a module, choose CONFIG_M here: the module will
	  be called gnss-mtk.

	  If unsure, say N.

config CONFIG_GNSS_SIRF_SERIAL
	tristate "SiRFstar GNSS receiver support"
	depends on CONFIG_SERIAL_DEV_BUS
	---help---
	  Say Y here if you have a SiRFstar-based CONFIG_GNSS receiver which uses a
	  serial interface.

	  To compile this driver as a module, choose CONFIG_M here: the module will
	  be called gnss-sirf.

	  If unsure, say N.

config CONFIG_GNSS_UBX_SERIAL
	tristate "u-blox GNSS receiver support"
	depends on CONFIG_SERIAL_DEV_BUS
	select CONFIG_GNSS_SERIAL
	---help---
	  Say Y here if you have a u-blox CONFIG_GNSS receiver which uses a serial
	  interface.

	  To compile this driver as a module, choose CONFIG_M here: the module will
	  be called gnss-ubx.

	  If unsure, say N.

endif # CONFIG_GNSS