From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NCrEf-0006pZ-R1 for qemu-devel@nongnu.org; Tue, 24 Nov 2009 03:58:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NCrEa-0006lU-QC for qemu-devel@nongnu.org; Tue, 24 Nov 2009 03:58:56 -0500 Received: from [199.232.76.173] (port=51444 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NCrEa-0006lD-FR for qemu-devel@nongnu.org; Tue, 24 Nov 2009 03:58:52 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55195) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NCrEZ-0000sb-QS for qemu-devel@nongnu.org; Tue, 24 Nov 2009 03:58:52 -0500 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nAO8wndO031757 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 24 Nov 2009 03:58:49 -0500 From: Gerd Hoffmann Date: Tue, 24 Nov 2009 09:58:34 +0100 Message-Id: <1259053124-10471-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 00/10] default devices: qdev integration. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Qemu creates a bunch of default devices (serial, parallel, vga, ...) if the user didn't specify one on the command line. Unfortunaly this doesn't work well with the qdev way of doing things because this logic is tied to the -serial, -parallel, ... command line switches. Devices created via -device are ignored. This patch set fixes this. It also adds a command line switch to disable all default devices and does a few cleanups in the code touched anyway. cheers, Gerd