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 37if ARCH_MX28 38 39config MX28 40 bool 41 default y 42 43choice 44 prompt "MX28 board select" 45 optional 46 47config TARGET_APX4DEVKIT 48 bool "Support apx4devkit" 49 50config TARGET_BG0900 51 bool "Support bg0900" 52 53config TARGET_MX28EVK 54 bool "Support mx28evk" 55 select BOARD_EARLY_INIT_F 56 57config TARGET_SC_SPS_1 58 bool "Support sc_sps_1" 59 60config TARGET_TS4600 61 bool "Support TS4600" 62 63endchoice 64 65config SYS_SOC 66 default "mxs" 67 68source "board/bluegiga/apx4devkit/Kconfig" 69source "board/freescale/mx28evk/Kconfig" 70source "board/ppcag/bg0900/Kconfig" 71source "board/schulercontrol/sc_sps_1/Kconfig" 72source "board/technologic/ts4600/Kconfig" 73 74endif 75