]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/armv7/omap3/Kconfig
53c0d240053b3f93092aa792431a9fc86bbcb225
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / omap3 / Kconfig
1 if OMAP34XX
2
3 choice
4 prompt "OMAP3 board select"
5
6 config TARGET_AM3517_EVM
7 bool "AM3517 EVM"
8 select SUPPORT_SPL
9
10 config TARGET_MT_VENTOUX
11 bool "TeeJet Mt.Ventoux"
12 select SUPPORT_SPL
13
14 config TARGET_OMAP3_SDP3430
15 bool "TI OMAP3430 SDP"
16
17 config TARGET_OMAP3_BEAGLE
18 bool "TI OMAP3 BeagleBoard"
19 select SUPPORT_SPL
20
21 config TARGET_CM_T35
22 bool "CompuLab CM-T3530 and CM-T3730 boards"
23 select SUPPORT_SPL
24
25 config TARGET_DEVKIT8000
26 bool "TimLL OMAP3 Devkit8000"
27 select SUPPORT_SPL
28
29 config TARGET_OMAP3_EVM
30 bool "TI OMAP3 EVM"
31 select SUPPORT_SPL
32
33 config TARGET_OMAP3_EVM_QUICK_MMC
34 bool "TI OMAP3 EVM Quick MMC"
35 select SUPPORT_SPL
36
37 config TARGET_OMAP3_EVM_QUICK_NAND
38 bool "TI OMAP3 EVM Quick NAND"
39 select SUPPORT_SPL
40
41 config TARGET_OMAP3_IGEP00X0
42 bool "IGEP"
43 select SUPPORT_SPL
44
45 config TARGET_OMAP3_OVERO
46 bool "OMAP35xx Gumstix Overo"
47 select SUPPORT_SPL
48
49 config TARGET_OMAP3_ZOOM1
50 bool "TI Zoom1"
51
52 config TARGET_AM3517_CRANE
53 bool "am3517_crane"
54 select SUPPORT_SPL
55
56 config TARGET_OMAP3_PANDORA
57 bool "OMAP3 Pandora"
58
59 config TARGET_ECO5PK
60 bool "ECO5PK"
61 select SUPPORT_SPL
62
63 config TARGET_DIG297
64 bool "DIG297"
65
66 config TARGET_TRICORDER
67 bool "Tricorder"
68 select SUPPORT_SPL
69
70 config TARGET_MCX
71 bool "MCX"
72 select SUPPORT_SPL
73
74 config TARGET_OMAP3_LOGIC
75 bool "OMAP3 Logic"
76
77 config TARGET_OMAP3_MVBLX
78 bool "OMAP3 MVBLX"
79
80 config TARGET_NOKIA_RX51
81 bool "Nokia RX51"
82
83 config TARGET_TAO3530
84 bool "TAO3530"
85 select SUPPORT_SPL
86
87 config TARGET_TWISTER
88 bool "Twister"
89 select SUPPORT_SPL
90
91 endchoice
92
93 config SYS_CPU
94 default "armv7"
95
96 config SYS_SOC
97 default "omap3"
98
99 source "board/logicpd/am3517evm/Kconfig"
100 source "board/teejet/mt_ventoux/Kconfig"
101 source "board/ti/sdp3430/Kconfig"
102 source "board/ti/beagle/Kconfig"
103 source "board/compulab/cm_t35/Kconfig"
104 source "board/timll/devkit8000/Kconfig"
105 source "board/ti/evm/Kconfig"
106 source "board/isee/igep00x0/Kconfig"
107 source "board/overo/Kconfig"
108 source "board/logicpd/zoom1/Kconfig"
109 source "board/ti/am3517crane/Kconfig"
110 source "board/pandora/Kconfig"
111 source "board/8dtech/eco5pk/Kconfig"
112 source "board/comelit/dig297/Kconfig"
113 source "board/corscience/tricorder/Kconfig"
114 source "board/htkw/mcx/Kconfig"
115 source "board/logicpd/omap3som/Kconfig"
116 source "board/matrix_vision/mvblx/Kconfig"
117 source "board/nokia/rx51/Kconfig"
118 source "board/technexion/tao3530/Kconfig"
119 source "board/technexion/twister/Kconfig"
120
121 endif