From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50042) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1FId-0001i0-9V for qemu-devel@nongnu.org; Fri, 01 Feb 2013 07:01:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1FIX-0008Vg-Vr for qemu-devel@nongnu.org; Fri, 01 Feb 2013 07:00:55 -0500 Received: from mx1.redhat.com ([209.132.183.28]:23091) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1FIX-0008VG-Nh for qemu-devel@nongnu.org; Fri, 01 Feb 2013 07:00:49 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r11C0kdj011617 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 1 Feb 2013 07:00:49 -0500 From: Gerd Hoffmann Date: Fri, 1 Feb 2013 13:00:44 +0100 Message-Id: <1359720044-8140-5-git-send-email-kraxel@redhat.com> In-Reply-To: <1359720044-8140-1-git-send-email-kraxel@redhat.com> References: <1359720044-8140-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 4/4] allow disabling usb smartcard support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/Makefile.objs | 2 ++ hw/usb/Makefile.objs | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/Makefile.objs b/hw/Makefile.objs index 447e32a..a1f3a80 100644 --- a/hw/Makefile.objs +++ b/hw/Makefile.objs @@ -38,8 +38,10 @@ common-obj-$(CONFIG_DMA) += dma.o common-obj-$(CONFIG_I82374) += i82374.o common-obj-$(CONFIG_HPET) += hpet.o common-obj-$(CONFIG_APPLESMC) += applesmc.o +ifeq ($(CONFIG_USB_SMARTCARD),y) common-obj-y += ccid-card-passthru.o common-obj-$(CONFIG_SMARTCARD_NSS) += ccid-card-emulated.o +endif common-obj-$(CONFIG_I8259) += i8259_common.o i8259.o common-obj-y += fifo.o common-obj-y += pam.o diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs index 3fb1396..be43366 100644 --- a/hw/usb/Makefile.objs +++ b/hw/usb/Makefile.objs @@ -20,7 +20,6 @@ common-obj-$(CONFIG_USB_NETWORK) += dev-network.o # FIXME: make configurable too CONFIG_USB_BLUETOOTH := y -CONFIG_USB_SMARTCARD := y common-obj-$(CONFIG_USB_BLUETOOTH) += dev-bluetooth.o common-obj-$(CONFIG_USB_SMARTCARD) += dev-smartcard-reader.o -- 1.7.9.7