12345678910111213141516171819202122232425262728293031323334353637 |
- menu "RISC-V QEMU virt64 configs"
- config RISCV_S_MODE
- bool "RT-Thread run in RISC-V S-Mode(supervisor mode)"
- default y
- config RT_USING_VIRTIO
- bool "Using VirtIO"
- default y
- depends on RT_USING_DEVICE_OPS
- config BSP_USING_VIRTIO_BLK
- bool "Using VirtIO BLK"
- default y
- depends on RT_USING_VIRTIO
- config BSP_USING_VIRTIO_NET
- bool "Using VirtIO NET"
- default y
- depends on RT_USING_VIRTIO
- config BSP_USING_VIRTIO_CONSOLE
- bool "Using VirtIO Console"
- default y
- depends on RT_USING_VIRTIO
- config BSP_USING_VIRTIO_GPU
- bool "Using VirtIO GPU"
- default y
- depends on RT_USING_VIRTIO
- config BSP_USING_VIRTIO_INPUT
- bool "Using VirtIO Input"
- default y
- depends on RT_USING_VIRTIO
- endmenu
|