]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/armv7/mx5/Kconfig
Kconfig: Migrate BOARD_LATE_INIT to a select
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / mx5 / Kconfig
1 if ARCH_MX5
2
3 config MX5
4 bool
5 default y
6
7 config MX51
8 bool
9
10 config MX53
11 bool
12
13 choice
14 prompt "MX5 board select"
15 optional
16
17 config TARGET_USBARMORY
18 bool "Support USB armory"
19 select CPU_V7
20
21 config TARGET_MX53CX9020
22 bool "Support CX9020"
23 select BOARD_LATE_INIT
24 select CPU_V7
25 select MX53
26 select DM
27 select DM_SERIAL
28
29 endchoice
30
31 config SYS_SOC
32 default "mx5"
33
34 source "board/beckhoff/mx53cx9020/Kconfig"
35 source "board/inversepath/usbarmory/Kconfig"
36
37 endif