xref: /openbmc/u-boot/arch/arm/mach-omap2/omap4/Kconfig (revision 78a88f79)
1if OMAP44XX
2
3choice
4	prompt "OMAP4 board select"
5	optional
6
7config TARGET_DUOVERO
8	bool "OMAP4430 Gumstix Duovero"
9
10config TARGET_OMAP4_PANDA
11	bool "TI OMAP4 PandaBoard"
12
13config TARGET_OMAP4_SDP4430
14	bool "TI OMAP4 SDP4430"
15
16config TARGET_KC1
17	bool "Amazon Kindle Fire (first generation)"
18
19endchoice
20
21config SYS_SOC
22	default "omap4"
23
24source "board/gumstix/duovero/Kconfig"
25source "board/ti/panda/Kconfig"
26source "board/ti/sdp4430/Kconfig"
27source "board/amazon/kc1/Kconfig"
28
29endif
30