From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=50656 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PM8TF-0003BI-Ts for qemu-devel@nongnu.org; Fri, 26 Nov 2010 19:16:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PM8TE-0006P6-TX for qemu-devel@nongnu.org; Fri, 26 Nov 2010 19:16:53 -0500 Received: from mail.codesourcery.com ([38.113.113.100]:37274) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PM8TE-0006Oe-LT for qemu-devel@nongnu.org; Fri, 26 Nov 2010 19:16:52 -0500 From: Paul Brook Date: Sat, 27 Nov 2010 00:16:38 +0000 References: <1290799053-27282-1-git-send-email-agraf@suse.de> <1290799053-27282-13-git-send-email-agraf@suse.de> In-Reply-To: <1290799053-27282-13-git-send-email-agraf@suse.de> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201011270016.39330.paul@codesourcery.com> Subject: [Qemu-devel] Re: [PATCH 12/13] config: add generic pci config file List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: Kevin Wolf , Joerg Roedel , QEMU-devel Developers , Blue Swirl , Gerd Hoffmann , Stefan Hajnoczi , tj@kernel.org, Roland Elek , Sebastian Herbszt > Currently we list PCI devices in every PCI capable architecture > individually. This is cumbersome when adding new devices and prone to > failure because one might miss out on one. > > So let's instead have a generic PCI configuration file where people can > throw in their cross-platform compatible PCI devices and thus make it > available to ever architecture that supports PCI too. I'm pretty sure this will overwrite user-edited $target/pci-devices.mak every time default-configs/pci-devices.mak is modified. It also requires that the makefile be modified every time a new include file is added. I've comitted a solution that fixes these issues. Paul