From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K9IlR-000732-Gl for qemu-devel@nongnu.org; Thu, 19 Jun 2008 07:57:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K9IlP-00071C-RW for qemu-devel@nongnu.org; Thu, 19 Jun 2008 07:57:16 -0400 Received: from [199.232.76.173] (port=46856 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K9IlP-000710-Kk for qemu-devel@nongnu.org; Thu, 19 Jun 2008 07:57:15 -0400 Received: from mail.gmx.net ([213.165.64.20]:33599) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1K9IlO-0008H0-St for qemu-devel@nongnu.org; Thu, 19 Jun 2008 07:57:15 -0400 Message-ID: <000e01c8d203$99f3b680$0201a8c0@zeug> From: "Sebastian Herbszt" References: <48595024.7050400@bellard.org> <20080619114035.GD11255@redhat.com> Date: Thu, 19 Jun 2008 13:56:27 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: QEMU configuration files Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Daniel P. Berrange" , qemu-devel@nongnu.org From: "Daniel P. Berrange" > It could also be useful to be able to specify a alternative preferences > file instead of the default $HOME/.qemu/config I think it's possible with the new "-f" option: + case QEMU_OPTION_f: + if (qemu_parse_config(&machine_dev, optarg, + QEMU_CONF_ERR_FILE) < 0) + exit(1); + has_config = 1; + break; - Sebastian