mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00

cryptodev backend interface is used to realize the active work for virtual crypto device. This patch only add the framework, doesn't include specific operations. Signed-off-by: Gonglei <arei.gonglei@huawei.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
13 lines
331 B
Text
13 lines
331 B
Text
common-obj-y += rng.o rng-egd.o
|
|
common-obj-$(CONFIG_POSIX) += rng-random.o
|
|
|
|
common-obj-y += msmouse.o testdev.o
|
|
common-obj-$(CONFIG_BRLAPI) += baum.o
|
|
baum.o-cflags := $(SDL_CFLAGS)
|
|
|
|
common-obj-$(CONFIG_TPM) += tpm.o
|
|
|
|
common-obj-y += hostmem.o hostmem-ram.o
|
|
common-obj-$(CONFIG_LINUX) += hostmem-file.o
|
|
|
|
common-obj-y += cryptodev.o
|