Kconfig 557 B

12345678910111213141516171819202122232425262728293031323334
  1. menu "mpc512x CPU"
  2. depends on MPC512X
  3. config SYS_CPU
  4. default "mpc512x"
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_PDM360NG
  9. bool "Support pdm360ng"
  10. config TARGET_ARIA
  11. bool "Support aria"
  12. config TARGET_MECP5123
  13. bool "Support mecp5123"
  14. config TARGET_MPC5121ADS
  15. bool "Support mpc5121ads"
  16. config TARGET_AC14XX
  17. bool "Support ac14xx"
  18. endchoice
  19. source "board/davedenx/aria/Kconfig"
  20. source "board/esd/mecp5123/Kconfig"
  21. source "board/freescale/mpc5121ads/Kconfig"
  22. source "board/ifm/ac14xx/Kconfig"
  23. source "board/pdm360ng/Kconfig"
  24. endmenu