]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-imx/mx2/Kconfig
mx25: Move MX25 selection to Kconfig
[people/ms/u-boot.git] / arch / arm / mach-imx / mx2 / Kconfig
1 if ARCH_MX25
2
3 config MX25
4 bool
5 default y
6 choice
7 prompt "MX25 board select"
8 optional
9
10 config TARGET_MX25PDK
11 bool "Support mx25pdk"
12 select BOARD_LATE_INIT
13 select CPU_ARM926EJS
14 select BOARD_EARLY_INIT_F
15
16 config TARGET_ZMX25
17 bool "Support zmx25"
18 select BOARD_LATE_INIT
19 select CPU_ARM926EJS1
20
21 endchoice
22
23 config SYS_SOC
24 default "mx25"
25
26 source "board/freescale/mx25pdk/Kconfig"
27 source "board/syteco/zmx25/Kconfig"
28
29 endif