aboutsummaryrefslogtreecommitdiff
path: root/backends/Makefile.objs
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2019-08-20 18:06:13 +0200
committerMichael S. Tsirkin <mst@redhat.com>2019-09-04 06:32:51 -0400
commit6c4e9d487fea67ceaebf5942be5b76ed675d0e9a (patch)
tree7c4e9610467292b6df01d181f647d8328a549e4a /backends/Makefile.objs
parent379d83f2c92879f4418aa9c57fd1fcbc3c82d384 (diff)
rng-builtin: add an RNG backend that uses qemu_guest_getrandom()
Add a new RNG backend using QEMU builtin getrandom function. It can be created and used with something like: ... -object rng-builtin,id=rng0 -device virtio-rng,rng=rng0 ... Signed-off-by: Laurent Vivier <lvivier@redhat.com> Message-Id: <20190820160615.14616-2-lvivier@redhat.com>
Diffstat (limited to 'backends/Makefile.objs')
-rw-r--r--backends/Makefile.objs2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/Makefile.objs b/backends/Makefile.objs
index 981e8e122f..f0691116e8 100644
--- a/backends/Makefile.objs
+++ b/backends/Makefile.objs
@@ -1,4 +1,4 @@
-common-obj-y += rng.o rng-egd.o
+common-obj-y += rng.o rng-egd.o rng-builtin.o
common-obj-$(CONFIG_POSIX) += rng-random.o
common-obj-$(CONFIG_TPM) += tpm.o