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_SANSA_FUZE_PLUS 20 bool "Support sansa_fuze_plus" 21 22config TARGET_XFI3 23 bool "Support xfi3" 24 25endchoice 26 27config SYS_SOC 28 default "mxs" 29 30source "board/olimex/mx23_olinuxino/Kconfig" 31source "board/freescale/mx23evk/Kconfig" 32source "board/sandisk/sansa_fuze_plus/Kconfig" 33source "board/creative/xfi3/Kconfig" 34 35endif 36