menuconfig BR2_TARGET_ARMLTD
	bool "ARM Ltd. Device Support"
	depends on BR2_arm
	select BR2_ARM_EABI
	select BR2_arm926t

comment "ARM Ltd. based Device Support"
	depends on BR2_TARGET_ARMLTD


if BR2_TARGET_ARMLTD

choice
	prompt "Controller board"
	default BR2_TARGET_ARM_INTEGRATOR_926
	help
	  ARM Ltd. Controller Board to build for

config BR2_TARGET_ARM_INTEGRATOR_926
	bool "Integrator arm926"

config BR2_TARGET_ARM_INTEGRATOR_926_HUGE
	bool "Integrator arm926 (Huge)"

endchoice

config BR2_BOARD_NAME
	string
	default "integrator926"		if BR2_TARGET_ARM_INTEGRATOR_926
	default "integrator926_huge"	if BR2_TARGET_ARM_INTEGRATOR_926_HUGE

config BR2_BOARD_PATH
	string "Board Path"
	default "target/device/ARMLTD/$(BR2_BOARD_NAME)"

endif