From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38822) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDudH-000261-6l for qemu-devel@nongnu.org; Mon, 26 Aug 2013 07:06:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDudB-0003ME-7n for qemu-devel@nongnu.org; Mon, 26 Aug 2013 07:06:50 -0400 Received: from mail-qe0-x231.google.com ([2607:f8b0:400d:c02::231]:60631) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDudB-0003M8-3b for qemu-devel@nongnu.org; Mon, 26 Aug 2013 07:06:45 -0400 Received: by mail-qe0-f49.google.com with SMTP id k5so1648113qej.36 for ; Mon, 26 Aug 2013 04:06:44 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <521B36C0.8070805@redhat.com> Date: Mon, 26 Aug 2013 13:06:40 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> <1377471536-12423-44-git-send-email-akoskovacs@gmx.com> In-Reply-To: <1377471536-12423-44-git-send-email-akoskovacs@gmx.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 43/47] hw/usb/Kconfig: Add Kconfig file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?w4Frb3MgS292w6Fjcw==?= Cc: qemu-devel@nongnu.org Il 26/08/2013 00:58, Ákos Kovács ha scritto: > Signed-off-by: Ákos Kovács > --- > hw/usb/Kconfig | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 60 insertions(+) > create mode 100644 hw/usb/Kconfig > > diff --git a/hw/usb/Kconfig b/hw/usb/Kconfig > new file mode 100644 > index 0000000..a39915c > --- /dev/null > +++ b/hw/usb/Kconfig > @@ -0,0 +1,60 @@ > +menu "USB devices" > + config USB_UHCI > + bool "USB UHCI support" > + default y > + > + config USB_OHCI > + bool "USB OHCI support" > + default y > + depends on PCI > + > + config USB_EHCI > + bool "USB EHCI support" > + default y > + > + config USB_XHCI > + bool "USB XHCI support" > + default y > + depends on PCI > + > + config USB_MUSB > + bool "USB MUSB support" > + default y > + > + config USB_TABLET_WACOM > + bool "Wacom tablet USB" > + default y > + > + config USB_STORAGE_BOT > + bool "USB harddrive support" > + default y > + > + config USB_STORAGE_UAS > + bool "UAS storage" > + default y > + > + config USB_AUDIO > + bool "USB audio" > + default y > + > + config USB_SERIAL > + bool "USB serial port adapter" > + default y > + > + config USB_NETWORK > + bool "USB networking" > + > + config USB_BLUETOOTH > + bool "USB bluetooth" > + default y > + > + config USB_SMARTCARD > + bool "USB Smart Card" > + default y > + > + config USB_SMARTCARD_NSS > + bool "Emulated USB Smart Card" > + > + config USB_REDIR > + bool "USB redirection device" > +endmenu > You should include the 3 USB patches you sent last week before this one, please. Thanks, Paolo