From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KeTBC-0008Mg-K6 for qemu-devel@nongnu.org; Sat, 13 Sep 2008 07:20:42 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KeTB9-0008Lw-Db for qemu-devel@nongnu.org; Sat, 13 Sep 2008 07:20:40 -0400 Received: from [199.232.76.173] (port=38965 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KeTB8-0008Li-Jo for qemu-devel@nongnu.org; Sat, 13 Sep 2008 07:20:39 -0400 Received: from ey-out-1920.google.com ([74.125.78.147]:23036) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KeTB7-0003uZ-UM for qemu-devel@nongnu.org; Sat, 13 Sep 2008 07:20:38 -0400 Received: by ey-out-1920.google.com with SMTP id 4so505901eyk.4 for ; Sat, 13 Sep 2008 04:20:36 -0700 (PDT) Message-ID: <83a4d4ca0809130420m1858dce6ub69c22e26d76a04f@mail.gmail.com> Date: Sat, 13 Sep 2008 13:20:36 +0200 From: "Eduardo Felipe" Subject: Re: [Qemu-devel] [RFC] Changing default Windows BIOS path from /c/Program Files/Qemu to c:\\Program Files\\Qemu In-Reply-To: <48CB129E.7090003@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <48CB129E.7090003@codemonkey.ws> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 2008/9/13 Anthony Liguori > > I'm not really sure where /c/Program Files/Qemu comes from. Cygwin would use /cygdrive/c/Program Files/Qemu and mingw32 would use c:\\Program Files\\Qemu. > > Changing it to the later seems like what it should be. Does the current default BIOS path actually work for anyone? If so, what are you building QEMU with? Hi, Default path doesn't work for me either. Running qemu from MSYS doesn't make any difference. If this is going to change, maybe it's better to try some kind of getenv("ProgramFiles") before defaulting back to c:\\Program Files. Same applies to other hardcoded directories in qemu, like /tmp/qemu.log, which uses the drive you invoke qemu from, whereas -snapshots writes to the directory pointed by the %TMP% environment variable. I think these two should be coherent, and maybe even user-definable. Regards, Edu.