From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52445) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9u0u-0006dw-P2 for qemu-devel@nongnu.org; Tue, 20 Mar 2012 04:02:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9u0o-0004Mh-IS for qemu-devel@nongnu.org; Tue, 20 Mar 2012 04:01:52 -0400 Received: from mail-ey0-f173.google.com ([209.85.215.173]:38273) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9u0o-0004MS-9E for qemu-devel@nongnu.org; Tue, 20 Mar 2012 04:01:46 -0400 Received: by eaaf11 with SMTP id f11so3332765eaa.4 for ; Tue, 20 Mar 2012 01:01:44 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 20 Mar 2012 09:01:26 +0100 Message-Id: <1332230498-20684-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 00/12] convert many options to QemuOpts List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This converts a lot of commonly-used options to QemuOpts. Most of them get in -machine, but I don't intend -machine to become a catch-all option. In fact I refrained from converting those that should go in -display (like -keyboard) or should be moved to enum device properties. With the exception of -display, now a more-or-less complete PC machine can be created from config. This is unfortunately not true of most embedded machines which use arrays such as serial_hd to create devices and do not support using -device instead. This does not mean that all options can be used. Only -monitor and -qmp create a backend/frontend pair in QemuOpts, so things such as -serial stdio will not work. Patch 1 is a bugfix, it was already submitted and informally approved by Blue. Paolo Bonzini (12): vga: disable default VGA if appropriate -device is used QemuOpts: use strtosz cmdline: implement -m with QemuOpts cmdline: implement -S with QemuOpts cmdline: implement -bios with QemuOpts cmdline: implement -localtime with QemuOpts cmdline: make -M a simple alias for -machine type cmdline: convert -smp to QemuOpts cmdline: reindent numa_add cmdline: convert -numa to QemuOpts cmdline: implement -nodefaults with qemuopts cmdline: convert -no-shutdown and -no-reboot to QemuOpts qemu-config.c | 78 +++++++++++++++ qemu-option.c | 41 ++------ vl.c | 289 ++++++++++++++++++++++++++----------------------------- 3 files changed, 225 insertions(+), 183 deletions(-) -- 1.7.7.6