]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/armv7/omap4/Kconfig
Convert CONFIG_SPL_I2C_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 config SPL_GPIO_SUPPORT
10 default y
11
12 config SPL_I2C_SUPPORT
13 default y
14
15 choice
16 prompt "OMAP4 board select"
17 optional
18
19 config TARGET_DUOVERO
20 bool "OMAP4430 Gumstix Duovero"
21
22 config TARGET_OMAP4_PANDA
23 bool "TI OMAP4 PandaBoard"
24
25 config TARGET_OMAP4_SDP4430
26 bool "TI OMAP4 SDP4430"
27
28 config TARGET_KC1
29 bool "Amazon Kindle Fire (first generation)"
30
31 endchoice
32
33 config SYS_SOC
34 default "omap4"
35
36 source "board/gumstix/duovero/Kconfig"
37 source "board/ti/panda/Kconfig"
38 source "board/ti/sdp4430/Kconfig"
39 source "board/amazon/kc1/Kconfig"
40
41 endif