Kconfig 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. config CPU_NUC960
  11. bool
  12. help
  13. Support for NUCP960 of Nuvoton NUC900 CPUs.
  14. menu "W90P910 Machines"
  15. config MACH_W90P910EVB
  16. bool "Nuvoton W90P910 Evaluation Board"
  17. default y
  18. select CPU_W90P910
  19. help
  20. Say Y here if you are using the Nuvoton W90P910EVB
  21. endmenu
  22. menu "NUC950 Machines"
  23. config MACH_W90P950EVB
  24. bool "Nuvoton NUC950 Evaluation Board"
  25. select CPU_NUC950
  26. help
  27. Say Y here if you are using the Nuvoton NUC950EVB
  28. endmenu
  29. menu "NUC960 Machines"
  30. config MACH_W90N960EVB
  31. bool "Nuvoton NUC960 Evaluation Board"
  32. select CPU_NUC960
  33. help
  34. Say Y here if you are using the Nuvoton NUC960EVB
  35. endmenu
  36. endif