Kconfig 432 B

1234567891011121314151617181920
  1. menuconfig RT_USING_SCSI
  2. bool "Using Small Computer System Interface (SCSI)"
  3. depends on RT_USING_DM
  4. default n
  5. config RT_SCSI_SD
  6. bool "SD device on SCSI"
  7. depends on RT_USING_SCSI
  8. depends on RT_USING_BLK
  9. default y
  10. config RT_SCSI_CDROM
  11. bool "CD-ROM device on SCSI"
  12. depends on RT_USING_SCSI
  13. depends on RT_USING_BLK
  14. default y
  15. if RT_USING_SCSI
  16. osource "$(SOC_DM_SCSI_DIR)/Kconfig"
  17. endif