mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 11:18:28 +00:00
2e07c249a6
This commit introduces a Kconfig symbol for each ARM CPU: CPU_ARM720T, CPU_ARM920T, CPU_ARM926EJS, CPU_ARM946ES, CPU_ARM1136, CPU_ARM1176, CPU_V7, CPU_PXA, CPU_SA1100. Also, it adds the CPU feature Kconfig symbol HAS_VBAR which is selected for CPU_ARM1176 and CPU_V7. For each target, the corresponding CPU is selected and the definition of SYS_CPU in the corresponding Kconfig file is removed. Also, it removes redundant "string" type in some Kconfig files. Signed-off-by: Georges Savoundararadj <savoundg@gmail.com> Acked-by: Albert ARIBAUD <albert.u.boot@aribaud.net> Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
118 lines
2.3 KiB
Text
118 lines
2.3 KiB
Text
if OMAP34XX
|
|
|
|
choice
|
|
prompt "OMAP3 board select"
|
|
|
|
config TARGET_AM3517_EVM
|
|
bool "AM3517 EVM"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_MT_VENTOUX
|
|
bool "TeeJet Mt.Ventoux"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_SDP3430
|
|
bool "TI OMAP3430 SDP"
|
|
|
|
config TARGET_OMAP3_BEAGLE
|
|
bool "TI OMAP3 BeagleBoard"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_CM_T35
|
|
bool "CompuLab CM-T3530 and CM-T3730 boards"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_DEVKIT8000
|
|
bool "TimLL OMAP3 Devkit8000"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_EVM
|
|
bool "TI OMAP3 EVM"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_EVM_QUICK_MMC
|
|
bool "TI OMAP3 EVM Quick MMC"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_EVM_QUICK_NAND
|
|
bool "TI OMAP3 EVM Quick NAND"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_IGEP00X0
|
|
bool "IGEP"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_OVERO
|
|
bool "OMAP35xx Gumstix Overo"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_ZOOM1
|
|
bool "TI Zoom1"
|
|
|
|
config TARGET_AM3517_CRANE
|
|
bool "am3517_crane"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_PANDORA
|
|
bool "OMAP3 Pandora"
|
|
|
|
config TARGET_ECO5PK
|
|
bool "ECO5PK"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_DIG297
|
|
bool "DIG297"
|
|
|
|
config TARGET_TRICORDER
|
|
bool "Tricorder"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_MCX
|
|
bool "MCX"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_OMAP3_LOGIC
|
|
bool "OMAP3 Logic"
|
|
|
|
config TARGET_OMAP3_MVBLX
|
|
bool "OMAP3 MVBLX"
|
|
|
|
config TARGET_NOKIA_RX51
|
|
bool "Nokia RX51"
|
|
|
|
config TARGET_TAO3530
|
|
bool "TAO3530"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_TWISTER
|
|
bool "Twister"
|
|
select SUPPORT_SPL
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "omap3"
|
|
|
|
source "board/logicpd/am3517evm/Kconfig"
|
|
source "board/teejet/mt_ventoux/Kconfig"
|
|
source "board/ti/sdp3430/Kconfig"
|
|
source "board/ti/beagle/Kconfig"
|
|
source "board/compulab/cm_t35/Kconfig"
|
|
source "board/timll/devkit8000/Kconfig"
|
|
source "board/ti/evm/Kconfig"
|
|
source "board/isee/igep00x0/Kconfig"
|
|
source "board/overo/Kconfig"
|
|
source "board/logicpd/zoom1/Kconfig"
|
|
source "board/ti/am3517crane/Kconfig"
|
|
source "board/pandora/Kconfig"
|
|
source "board/8dtech/eco5pk/Kconfig"
|
|
source "board/comelit/dig297/Kconfig"
|
|
source "board/corscience/tricorder/Kconfig"
|
|
source "board/htkw/mcx/Kconfig"
|
|
source "board/logicpd/omap3som/Kconfig"
|
|
source "board/matrix_vision/mvblx/Kconfig"
|
|
source "board/nokia/rx51/Kconfig"
|
|
source "board/technexion/tao3530/Kconfig"
|
|
source "board/technexion/twister/Kconfig"
|
|
|
|
endif
|