Home | History | Annotate | Download | only in mxs
      1 if ARCH_MX23
      2 
      3 config MX23
      4 	bool
      5 	default y
      6 
      7 choice
      8 	prompt "MX23 board select"
      9 	optional
     10 
     11 config TARGET_MX23_OLINUXINO
     12 	bool "Support mx23_olinuxino"
     13 	select BOARD_EARLY_INIT_F
     14 
     15 config TARGET_MX23EVK
     16 	bool "Support mx23evk"
     17 	select BOARD_EARLY_INIT_F
     18 
     19 config TARGET_SANSA_FUZE_PLUS
     20 	bool "Support sansa_fuze_plus"
     21 
     22 config TARGET_XFI3
     23 	bool "Support xfi3"
     24 
     25 endchoice
     26 
     27 config SYS_SOC
     28 	default "mxs"
     29 
     30 source "board/olimex/mx23_olinuxino/Kconfig"
     31 source "board/freescale/mx23evk/Kconfig"
     32 source "board/sandisk/sansa_fuze_plus/Kconfig"
     33 source "board/creative/xfi3/Kconfig"
     34 
     35 endif
     36 
     37 if ARCH_MX28
     38 
     39 config MX28
     40 	bool
     41 	default y
     42 
     43 choice
     44 	prompt "MX28 board select"
     45 	optional
     46 
     47 config TARGET_APX4DEVKIT
     48 	bool "Support apx4devkit"
     49 
     50 config TARGET_BG0900
     51 	bool "Support bg0900"
     52 
     53 config TARGET_MX28EVK
     54 	bool "Support mx28evk"
     55 	select BOARD_EARLY_INIT_F
     56 
     57 config TARGET_SC_SPS_1
     58 	bool "Support sc_sps_1"
     59 
     60 config TARGET_TS4600
     61 	bool "Support TS4600"
     62 
     63 endchoice
     64 
     65 config SYS_SOC
     66 	default "mxs"
     67 
     68 source "board/bluegiga/apx4devkit/Kconfig"
     69 source "board/freescale/mx28evk/Kconfig"
     70 source "board/ppcag/bg0900/Kconfig"
     71 source "board/schulercontrol/sc_sps_1/Kconfig"
     72 source "board/technologic/ts4600/Kconfig"
     73 
     74 endif
     75