Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. menu "mpc5xxx CPU"
  2. depends on MPC5xxx
  3. config SYS_CPU
  4. default "mpc5xxx"
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_A3M071
  9. bool "Support a3m071"
  10. select SUPPORT_SPL
  11. config TARGET_A4M072
  12. bool "Support a4m072"
  13. config TARGET_CANMB
  14. bool "Support canmb"
  15. config TARGET_CM5200
  16. bool "Support cm5200"
  17. config TARGET_INKA4X0
  18. bool "Support inka4x0"
  19. config TARGET_IPEK01
  20. bool "Support ipek01"
  21. config TARGET_JUPITER
  22. bool "Support jupiter"
  23. config TARGET_MOTIONPRO
  24. bool "Support motionpro"
  25. config TARGET_MUNICES
  26. bool "Support munices"
  27. config TARGET_V38B
  28. bool "Support v38b"
  29. config TARGET_O2D
  30. bool "Support O2D"
  31. config TARGET_O2D300
  32. bool "Support O2D300"
  33. config TARGET_O2DNT2
  34. bool "Support O2DNT2"
  35. config TARGET_O2I
  36. bool "Support O2I"
  37. config TARGET_O2MNT
  38. bool "Support O2MNT"
  39. config TARGET_O3DNT
  40. bool "Support O3DNT"
  41. config TARGET_DIGSY_MTC
  42. bool "Support digsy_mtc"
  43. imply CMD_IRQ
  44. config TARGET_PCM030
  45. bool "Support pcm030"
  46. config TARGET_CHARON
  47. bool "Support charon"
  48. config TARGET_TQM5200
  49. bool "Support TQM5200"
  50. endchoice
  51. source "board/a3m071/Kconfig"
  52. source "board/a4m072/Kconfig"
  53. source "board/canmb/Kconfig"
  54. source "board/cm5200/Kconfig"
  55. source "board/ifm/o2dnt2/Kconfig"
  56. source "board/inka4x0/Kconfig"
  57. source "board/intercontrol/digsy_mtc/Kconfig"
  58. source "board/ipek01/Kconfig"
  59. source "board/jupiter/Kconfig"
  60. source "board/motionpro/Kconfig"
  61. source "board/munices/Kconfig"
  62. source "board/phytec/pcm030/Kconfig"
  63. source "board/tqc/tqm5200/Kconfig"
  64. source "board/v38b/Kconfig"
  65. endmenu