Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. if ARCH_MX23
  2. config MX23
  3. bool
  4. default y
  5. choice
  6. prompt "MX23 board select"
  7. optional
  8. config TARGET_MX23_OLINUXINO
  9. bool "Support mx23_olinuxino"
  10. select BOARD_EARLY_INIT_F
  11. config TARGET_MX23EVK
  12. bool "Support mx23evk"
  13. select BOARD_EARLY_INIT_F
  14. config TARGET_SANSA_FUZE_PLUS
  15. bool "Support sansa_fuze_plus"
  16. config TARGET_XFI3
  17. bool "Support xfi3"
  18. endchoice
  19. config SYS_SOC
  20. default "mxs"
  21. source "board/olimex/mx23_olinuxino/Kconfig"
  22. source "board/freescale/mx23evk/Kconfig"
  23. source "board/sandisk/sansa_fuze_plus/Kconfig"
  24. source "board/creative/xfi3/Kconfig"
  25. endif
  26. if ARCH_MX28
  27. config MX28
  28. bool
  29. default y
  30. choice
  31. prompt "MX28 board select"
  32. optional
  33. config TARGET_APX4DEVKIT
  34. bool "Support apx4devkit"
  35. config TARGET_BG0900
  36. bool "Support bg0900"
  37. config TARGET_MX28EVK
  38. bool "Support mx28evk"
  39. select BOARD_EARLY_INIT_F
  40. config TARGET_SC_SPS_1
  41. bool "Support sc_sps_1"
  42. config TARGET_TS4600
  43. bool "Support TS4600"
  44. endchoice
  45. config SYS_SOC
  46. default "mxs"
  47. source "board/bluegiga/apx4devkit/Kconfig"
  48. source "board/freescale/mx28evk/Kconfig"
  49. source "board/ppcag/bg0900/Kconfig"
  50. source "board/schulercontrol/sc_sps_1/Kconfig"
  51. source "board/technologic/ts4600/Kconfig"
  52. endif