Kconfig 531 B

123456789101112131415161718192021222324252627282930
  1. if SH_RTS7751R2D
  2. menu "RTS7751R2D options"
  3. choice
  4. prompt "R2D Board Revision"
  5. default RTS7751R2D_PLUS
  6. config RTS7751R2D_PLUS
  7. bool "R2D-PLUS"
  8. help
  9. Selecting this option will configure the kernel for R2D-PLUS.
  10. R2D-PLUS is the smaller of the two R2D board versions, equipped
  11. with a single PCI slot.
  12. config RTS7751R2D_1
  13. bool "R2D-1"
  14. help
  15. Selecting this option will configure the kernel for R2D-1.
  16. R2D-1 is the larger of the two R2D board versions, equipped
  17. with two PCI slots.
  18. endchoice
  19. endmenu
  20. endif