Kconfig 548 B

12345678910111213141516171819202122232425262728293031323334
  1. if ARCH_W90X900
  2. config CPU_W90P910
  3. bool
  4. help
  5. Support for W90P910 of Nuvoton W90X900 CPUs.
  6. config CPU_NUC950
  7. bool
  8. help
  9. Support for NUCP950 of Nuvoton NUC900 CPUs.
  10. menu "W90P910 Machines"
  11. config MACH_W90P910EVB
  12. bool "Nuvoton W90P910 Evaluation Board"
  13. default y
  14. select CPU_W90P910
  15. help
  16. Say Y here if you are using the Nuvoton W90P910EVB
  17. endmenu
  18. menu "NUC950 Machines"
  19. config MACH_W90P950EVB
  20. bool "Nuvoton NUC950 Evaluation Board"
  21. select CPU_NUC950
  22. help
  23. Say Y here if you are using the Nuvoton NUC950EVB
  24. endmenu
  25. endif