From a5d74cbfb850a57c04e03241eeeeef81dc8cbdfd Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sat, 2 Nov 2013 15:24:00 +0100 Subject: [PATCH 114/212] rhel: Make "ccid-card-emulated" device unavailable RH-Author: Markus Armbruster Message-id: <1383405840-6221-2-git-send-email-armbru@redhat.com> Patchwork-id: 55273 O-Subject: [PATCH 7.0 qemu-kvm 1/1] rhel: Make "ccid-card-emulated" device unavailable Bugzilla: 1001123 RH-Acked-by: Paolo Bonzini RH-Acked-by: Marcel Apfelbaum RH-Acked-by: Alex Williamson From: Markus Armbruster We can't just --disable-smartcard-nss, because that also disables libcacard. Instead, make it unavailable with -device / device_add. Suffices, because there's no other way to get it: the device model defines no external symbols, and the driver name doesn't occur in code outside the device model. Signed-off-by: Markus Armbruster --- hw/usb/ccid-card-emulated.c | 2 ++ 1 file changed, 2 insertions(+) Signed-off-by: Miroslav Rezanina --- hw/usb/ccid-card-emulated.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/usb/ccid-card-emulated.c b/hw/usb/ccid-card-emulated.c index aa1c37a..17921a3 100644 --- a/hw/usb/ccid-card-emulated.c +++ b/hw/usb/ccid-card-emulated.c @@ -586,6 +586,8 @@ static void emulated_class_initfn(ObjectClass *klass, void *data) set_bit(DEVICE_CATEGORY_INPUT, dc->categories); dc->desc = "emulated smartcard"; dc->props = emulated_card_properties; + /* Disabled for Red Hat Enterprise Linux: */ + dc->cannot_instantiate_with_device_add_yet = true; } static const TypeInfo emulated_card_info = { -- 1.7.1