Newer
Older
barebox / arch / arm / mach-tegra / Kconfig
@Ahmad Fatoum Ahmad Fatoum on 29 Apr 2020 707 bytes treewide: Kconfig: remove some unused symbols
if ARCH_TEGRA

config ARCH_TEXT_BASE
	hex
	default 0x0

# ---------------------------------------------------------

config ARCH_TEGRA_2x_SOC
	bool

config ARCH_TEGRA_3x_SOC
	bool

config ARCH_TEGRA_124_SOC
	bool

menu "select Tegra boards to be built"

config MACH_TORADEX_COLIBRI_T20
	bool "Toradex Colibri T20"
	select ARCH_TEGRA_2x_SOC

config MACH_TOSHIBA_AC100
	bool "Toshiba AC100"
	select ARCH_TEGRA_2x_SOC

config MACH_NVIDIA_BEAVER
	bool "NVIDIA Beaver"
	select ARCH_TEGRA_3x_SOC
	select I2C
	select I2C_TEGRA

config MACH_NVIDIA_JETSON
	bool "NVIDIA Jetson TK1"
	select ARCH_TEGRA_124_SOC
	select I2C
	select I2C_TEGRA

endmenu

# ---------------------------------------------------------

endif