Kconfig 726 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. if ARCH_H720X
  2. menu "h720x Implementations"
  3. config ARCH_H7201
  4. bool "gms30c7201"
  5. depends on ARCH_H720X
  6. select CPU_H7201
  7. help
  8. Say Y here if you are using the Hynix GMS30C7201 Reference Board
  9. config ARCH_H7202
  10. bool "hms30c7202"
  11. select CPU_H7202
  12. depends on ARCH_H720X
  13. help
  14. Say Y here if you are using the Hynix HMS30C7202 Reference Board
  15. endmenu
  16. config CPU_H7201
  17. bool
  18. help
  19. Select code specific to h7201 variants
  20. config CPU_H7202
  21. bool
  22. help
  23. Select code specific to h7202 variants
  24. config H7202_SERIAL23
  25. depends on CPU_H7202
  26. bool "Use serial ports 2+3"
  27. help
  28. Say Y here if you wish to use serial ports 2+3. They share their
  29. pins with the keyboard matrix controller, so you have to decide.
  30. endif