https://github.com/torvalds/linux
Raw File
Tip revision: 521cb40b0c44418a4fd36dc633f575813d59a43d authored by Linus Torvalds on 15 March 2011, 01:20:32 UTC
Linux 2.6.38
Tip revision: 521cb40
Kconfig
#
# SPEAr Platform configuration file
#

if PLAT_SPEAR

choice
	prompt "ST SPEAr Family"
	default ARCH_SPEAR3XX

config ARCH_SPEAR3XX
	bool "SPEAr3XX"
	select ARM_VIC
	select CPU_ARM926T
	help
	  Supports for ARM's SPEAR3XX family

config ARCH_SPEAR6XX
	bool "SPEAr6XX"
	select ARM_VIC
	select CPU_ARM926T
	help
	  Supports for ARM's SPEAR6XX family

endchoice

# Adding SPEAr machine specific configuration files
source "arch/arm/mach-spear3xx/Kconfig"
source "arch/arm/mach-spear6xx/Kconfig"

endif
back to top