From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NAKW9-00026O-JN for qemu-devel@nongnu.org; Tue, 17 Nov 2009 04:38:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NAKW3-00024I-Nt for qemu-devel@nongnu.org; Tue, 17 Nov 2009 04:38:31 -0500 Received: from [199.232.76.173] (port=51747 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NAKW3-00024E-KE for qemu-devel@nongnu.org; Tue, 17 Nov 2009 04:38:27 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52806) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NAKW3-0007BR-5H for qemu-devel@nongnu.org; Tue, 17 Nov 2009 04:38:27 -0500 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nAH9cPYk019911 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 17 Nov 2009 04:38:25 -0500 From: Gerd Hoffmann Date: Tue, 17 Nov 2009 10:38:10 +0100 Message-Id: <1258450699-24445-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/9] fixup default device handling. 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 silently creates default devices for you if you didn't specify one on the command line, i.e. you'll get a vga, a serial port, a nic, ... created by default. Right now this doesn't integrate with qdev at all, i.e. if you try to add -- for example -- a serial line the new qdev way using '-device isa-serial,chardev=something' it will conflict with the automagically created serial port. This patch series addresses this problem. cheers, Gerd