From nobody Fri Nov 7 09:09:00 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1537178490707818.1645576428433; Mon, 17 Sep 2018 03:01:30 -0700 (PDT) Received: from localhost ([::1]:34765 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g1qLR-0005SE-80 for importer@patchew.org; Mon, 17 Sep 2018 06:01:29 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g1qGY-0001O6-2A for qemu-devel@nongnu.org; Mon, 17 Sep 2018 05:56:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g1qGW-0005WX-S6 for qemu-devel@nongnu.org; Mon, 17 Sep 2018 05:56:25 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16845) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g1qGW-0005Vo-Lh for qemu-devel@nongnu.org; Mon, 17 Sep 2018 05:56:24 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E3199155C6 for ; Mon, 17 Sep 2018 09:56:23 +0000 (UTC) Received: from sirius.home.kraxel.org (ovpn-116-56.phx2.redhat.com [10.3.116.56]) by smtp.corp.redhat.com (Postfix) with ESMTP id CD3A46147F; Mon, 17 Sep 2018 09:56:22 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 5C87C9B2F5; Mon, 17 Sep 2018 11:56:18 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Mon, 17 Sep 2018 11:56:17 +0200 Message-Id: <20180917095618.23930-6-kraxel@redhat.com> In-Reply-To: <20180917095618.23930-1-kraxel@redhat.com> References: <20180917095618.23930-1-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Mon, 17 Sep 2018 09:56:23 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 5/6] usb: add config options for hub and hid devices (kbd, mouse, tablet). X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Gerd Hoffmann Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RDMRC_1 RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Gerd Hoffmann Message-id: 20180830045324.21584-1-kraxel@redhat.com --- default-configs/usb.mak | 2 ++ hw/usb/Makefile.objs | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/default-configs/usb.mak b/default-configs/usb.mak index e42cfeabbe..3ee117dbf6 100644 --- a/default-configs/usb.mak +++ b/default-configs/usb.mak @@ -1,4 +1,6 @@ CONFIG_USB=3Dy +CONFIG_USB_HUB=3Dy +CONFIG_USB_HID=3Dy CONFIG_USB_TABLET_WACOM=3Dy CONFIG_USB_STORAGE_BOT=3Dy CONFIG_USB_STORAGE_UAS=3Dy diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs index 41be700812..c8802aaefd 100644 --- a/hw/usb/Makefile.objs +++ b/hw/usb/Makefile.objs @@ -15,8 +15,8 @@ obj-$(CONFIG_TUSB6010) +=3D tusb6010.o obj-$(CONFIG_IMX) +=3D chipidea.o =20 # emulated usb devices -common-obj-$(CONFIG_USB) +=3D dev-hub.o -common-obj-$(CONFIG_USB) +=3D dev-hid.o +common-obj-$(CONFIG_USB_HUB) +=3D dev-hub.o +common-obj-$(CONFIG_USB_HID) +=3D dev-hid.o common-obj-$(CONFIG_USB_TABLET_WACOM) +=3D dev-wacom.o common-obj-$(CONFIG_USB_STORAGE_BOT) +=3D dev-storage.o common-obj-$(CONFIG_USB_STORAGE_UAS) +=3D dev-uas.o --=20 2.9.3