Kconfig 756 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "RISC-V QEMU virt64 configs"
  2. config RISCV_S_MODE
  3. bool "RT-Thread run in RISC-V S-Mode(supervisor mode)"
  4. default y
  5. config RT_USING_VIRTIO
  6. bool "Using VirtIO"
  7. default y
  8. depends on RT_USING_DEVICE_OPS
  9. config BSP_USING_VIRTIO_BLK
  10. bool "Using VirtIO BLK"
  11. default y
  12. depends on RT_USING_VIRTIO
  13. config BSP_USING_VIRTIO_NET
  14. bool "Using VirtIO NET"
  15. default y
  16. depends on RT_USING_VIRTIO
  17. config BSP_USING_VIRTIO_CONSOLE
  18. bool "Using VirtIO Console"
  19. default y
  20. depends on RT_USING_VIRTIO
  21. config BSP_USING_VIRTIO_GPU
  22. bool "Using VirtIO GPU"
  23. default y
  24. depends on RT_USING_VIRTIO
  25. config BSP_USING_VIRTIO_INPUT
  26. bool "Using VirtIO Input"
  27. default y
  28. depends on RT_USING_VIRTIO
  29. endmenu