]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/armv7/omap4/Kconfig
Convert CONFIG_SPL_FAT_SUPPORT to Kconfig
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / omap4 / Kconfig
1 if OMAP44XX
2
3 config SPL_EXT_SUPPORT
4 default y
5
6 config SPL_FAT_SUPPORT
7 default y
8
9 choice
10 prompt "OMAP4 board select"
11 optional
12
13 config TARGET_DUOVERO
14 bool "OMAP4430 Gumstix Duovero"
15
16 config TARGET_OMAP4_PANDA
17 bool "TI OMAP4 PandaBoard"
18
19 config TARGET_OMAP4_SDP4430
20 bool "TI OMAP4 SDP4430"
21
22 config TARGET_KC1
23 bool "Amazon Kindle Fire (first generation)"
24
25 endchoice
26
27 config SYS_SOC
28 default "omap4"
29
30 source "board/gumstix/duovero/Kconfig"
31 source "board/ti/panda/Kconfig"
32 source "board/ti/sdp4430/Kconfig"
33 source "board/amazon/kc1/Kconfig"
34
35 endif