Commit 010a1acb authored by Ulf Samuelsson's avatar Ulf Samuelsson
Browse files

Clean up ARM Ltd. BSP

parent 97515c6c
Loading
Loading
Loading
Loading
+6 −11
Original line number Diff line number Diff line
menuconfig BR2_TARGET_ARMLTD
	bool "ARM Ltd. Device Support"
	depends on BR2_arm
	select BR2_ARM_EABI
	select BR2_arm926t

comment "Arm based Device Support"
	depends on BR2_arm && BR2_TARGET_ARMLTD
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"
	depends on BR2_arm && BR2_TARGET_ARMLTD
	default y
	select BR2_ARM_EABI
	select BR2_arm926t

config BR2_TARGET_ARM_INTEGRATOR_926_HUGE
	bool "Integrator arm926 (Huge)"
	depends on BR2_arm && BR2_TARGET_ARMLTD
	default y
	select BR2_ARM_EABI
	select BR2_arm926t

endchoice

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

config BR2_BOARD_PATH
	string "Board Path"
+5 −8
Original line number Diff line number Diff line
ifeq ($(BR2_TARGET_ARMLTD_INTEGRATOR_926),y)
LINUX26_KCONFIG:=target/device/Arm/linux26.integrator926.config
TARGETS+=linux26
ifeq ($(BR2_TARGET_ARMLTD),y)
BOARD_NAME=$(strip $(subst ",,$(BR2_BOARD_NAME)))
#"))
BOARD_PATH=$(strip $(subst ",,$(BR2_BOARD_PATH)))
#"))

ifndef UCLIBC_CONFIG_FILE
UCLIBC_CONFIG_FILE:=target/device/ARM/uClibc.integrator926.config
endif

# pin some settings
BR2_ARM_EABI:=y
BR2_GNU_TARGET_SUFFIX:="linux-uclibcgnueabi"
BR2_DEFAULT_KERNEL_HEADERS:="2.6.22.8"
endif
+344 −104

File changed.

Preview size limit exceeded, changes collapsed.

+557 −348

File changed and moved.

Preview size limit exceeded, changes collapsed.

Loading