Newer
Older
barebox / common / ratp / Kconfig
@Lucas Stach Lucas Stach on 2 Dec 2019 801 bytes ratp: add more build dependencies

config CONSOLE_RATP
	bool
	select RATP
	select CRC_ITU_T
	select POLLER
	select CMDLINE_EDITING
	depends on CONSOLE_FULL
	depends on !SHELL_NONE
	prompt "RATP console support"
	help
	  This option adds support for remote controlling barebox via serial
	  port. The regular console is designed for human interaction whereas
	  this option adds a machine readable interface for controlling barebox.
	  Say yes here if you want to control barebox from a remote host.

config RATP_CMD_I2C
	bool
	depends on RATP
	depends on I2C
	prompt "RATP i2c support"
	help
	  This option adds support for i2c read/write commands via RATP.

config RATP_CMD_GPIO
	bool
	depends on RATP
	depends on GENERIC_GPIO
	prompt "RATP GPIO support"
	help
	  This option adds support for GPIO get/set/direction commands via RATP.