diff options
author | Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> | 2018-10-15 02:21:03 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-11-14 09:16:27 -0800 |
commit | f371ad3064699f460711523db5e8177a0fc7b22e (patch) | |
tree | c6c8578c87e420023bd18a9d88a446dc97ad6f8a /drivers/virtio/Kconfig | |
parent | fdc4aca89ecb928d893c8bca4d0de08ebd07686a (diff) | |
download | u-boot-f371ad3064699f460711523db5e8177a0fc7b22e.tar.gz u-boot-f371ad3064699f460711523db5e8177a0fc7b22e.tar.bz2 u-boot-f371ad3064699f460711523db5e8177a0fc7b22e.zip |
virtio: Add net driver support
This adds virtio net device driver support.
Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/virtio/Kconfig')
-rw-r--r-- | drivers/virtio/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index 4f9a11b6ef..e20dd69395 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -29,4 +29,11 @@ config VIRTIO_MMIO This driver provides support for memory mapped virtio platform device driver. +config VIRTIO_NET + bool "virtio net driver" + depends on VIRTIO + help + This is the virtual net driver for virtio. It can be used with + QEMU based targets. + endmenu |