1if ARCH_MX23 2 3config MX23 4 bool 5 default y 6 7choice 8 prompt "MX23 board select" 9 optional 10 11config TARGET_MX23_OLINUXINO 12 bool "Support mx23_olinuxino" 13 select BOARD_EARLY_INIT_F 14 15config TARGET_MX23EVK 16 bool "Support mx23evk" 17 select BOARD_EARLY_INIT_F 18 19config TARGET_XFI3 20 bool "Support xfi3" 21 22endchoice 23 24config SYS_SOC 25 default "mxs" 26 27source "board/olimex/mx23_olinuxino/Kconfig" 28source "board/freescale/mx23evk/Kconfig" 29 30endif 31 32if ARCH_MX28 33 34config MX28 35 bool 36 default y 37 38choice 39 prompt "MX28 board select" 40 optional 41 42config TARGET_MX28EVK 43 bool "Support mx28evk" 44 select BOARD_EARLY_INIT_F 45 46config TARGET_XEA 47 bool "Support XEA" 48 49endchoice 50 51config SYS_SOC 52 default "mxs" 53 54source "board/freescale/mx28evk/Kconfig" 55source "board/liebherr/xea/Kconfig" 56 57endif 58