From patchwork Sun Aug 25 22:58:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?w4Frb3MgS292w6Fjcw==?= X-Patchwork-Id: 269766 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BAD812C00C4 for ; Mon, 26 Aug 2013 09:17:25 +1000 (EST) Received: from localhost ([::1]:48062 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjYh-0007ZO-Lj for incoming@patchwork.ozlabs.org; Sun, 25 Aug 2013 19:17:23 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54835) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjHs-0005MX-EI for qemu-devel@nongnu.org; Sun, 25 Aug 2013 19:00:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDjHm-0006KS-Io for qemu-devel@nongnu.org; Sun, 25 Aug 2013 19:00:00 -0400 Received: from mail-ea0-x232.google.com ([2a00:1450:4013:c01::232]:34148) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjHm-0006KI-Cg for qemu-devel@nongnu.org; Sun, 25 Aug 2013 18:59:54 -0400 Received: by mail-ea0-f178.google.com with SMTP id a15so1278133eae.9 for ; Sun, 25 Aug 2013 15:59:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=4Yvdy4Dp2bJ7nin2qxxh9EuxEvonChb1u45V3A3NSLQ=; b=PwlRDwj76YsUyR7naezc3K/0bruliSPSLjK9DADnMWBP5laRGG5z/e1HPn0o2rWHOK f01Ek0M5OOiGg66bGy8SGJqNXpC5sTdKInNwoEMGIKdQyIpMzyWot2B5yWk8j5B0RhFL /RMWv0txRfNlsYjNEoG8u0OyZwdPbSq/KdwLwWmgMyIB3WfmiVI+f8W6x3vmKv0ntgJd LrjTCT+hBkDXadEdYRFJ8BbAQ0S/EaiuXTx1b4PlOV+2nGfFW2XGrfkfpiQNWAL/gdml GGiOZG86FdYF1/IcEE6TWe+AqWAqQ3/DXIUWNUWVoiY/5nIdqZ68azWC/t1K/vwTBXnK 5SZA== X-Received: by 10.14.29.67 with SMTP id h43mr20763868eea.7.1377471593626; Sun, 25 Aug 2013 15:59:53 -0700 (PDT) Received: from localhost.localdomain (4E5C0DBA.dsl.pool.telekom.hu. [78.92.13.186]) by mx.google.com with ESMTPSA id m54sm16988906eex.2.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 25 Aug 2013 15:59:53 -0700 (PDT) From: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= To: qemu-devel@nongnu.org Date: Mon, 26 Aug 2013 00:58:46 +0200 Message-Id: <1377471536-12423-38-git-send-email-akoskovacs@gmx.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> References: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c01::232 Cc: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= Subject: [Qemu-devel] [PATCH 37/47] hw/pci-host/Kconfig: Add Kconfig file X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Ákos Kovács --- hw/pci-host/Kconfig | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 hw/pci-host/Kconfig diff --git a/hw/pci-host/Kconfig b/hw/pci-host/Kconfig new file mode 100644 index 0000000..12014f5 --- /dev/null +++ b/hw/pci-host/Kconfig @@ -0,0 +1,36 @@ +config PREP_PCI + bool + select PCI + +config GRACKLE_PCI + bool + select PCI + +config UNIN_PCI + bool + select PCI + +config PPCE500_PCI + bool + select PCI + +config VERSATILE_PCI + bool + select PCI + +config PCI_APB + bool + select PCI + +config FULONG + bool + select PCI + +config PCI_PIIX + bool + select PCI + #select ISA + +config PCI_Q35 + bool + select PCI