From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LDi74-0002bG-8K for qemu-devel@nongnu.org; Fri, 19 Dec 2008 11:22:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LDi73-0002aV-B9 for qemu-devel@nongnu.org; Fri, 19 Dec 2008 11:22:05 -0500 Received: from [199.232.76.173] (port=51341 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LDi73-0002aI-2I for qemu-devel@nongnu.org; Fri, 19 Dec 2008 11:22:05 -0500 Received: from savannah.gnu.org ([199.232.41.3]:49660 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LDi72-00024p-Qu for qemu-devel@nongnu.org; Fri, 19 Dec 2008 11:22:04 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1LDi72-0004Lv-72 for qemu-devel@nongnu.org; Fri, 19 Dec 2008 16:22:04 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1LDi71-0004Lr-QO for qemu-devel@nongnu.org; Fri, 19 Dec 2008 16:22:03 +0000 MIME-Version: 1.0 Errors-To: aliguori Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Anthony Liguori Message-Id: Date: Fri, 19 Dec 2008 16:22:03 +0000 Subject: [Qemu-devel] [6109] Add BIOS build instructions (Andre Przywara) 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 Revision: 6109 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6109 Author: aliguori Date: 2008-12-19 16:22:03 +0000 (Fri, 19 Dec 2008) Log Message: ----------- Add BIOS build instructions (Andre Przywara) aliguori: did a little indenting and motion for aesthics. Signed-off-by: Andre Przywara Signed-off-by: Anthony Liguori Modified Paths: -------------- trunk/pc-bios/README Modified: trunk/pc-bios/README =================================================================== --- trunk/pc-bios/README 2008-12-19 16:17:10 UTC (rev 6108) +++ trunk/pc-bios/README 2008-12-19 16:22:03 UTC (rev 6109) @@ -4,6 +4,27 @@ that HEAD refers to is located at git://git.kernel.org/pub/scm/virt/bochs/bochs.git + To build these use the following instructions: + using guilt: + $ export QEMUSRC=/path/to/qemu/svn + $ git clone git://git.kernel.org/pub/scm/virt/bochs/bochs.git + $ cd bochs + $ git checkout -b qemu-bios $(cat $QEMUSRC/pc-bios/bios-pq/HEAD) + + $ mkdir -p .git/patches + $ ln -s $QEMUSRC/pc-bios/bios-pq .git/patches/qemu-bios + $ touch .git/patches/qemu-bios/status + $ guilt push -a + $ ./configure + $ cd bios + $ make + $ cp BIOS-bochs-latest $QEMUSRC/pc-bios/bios.bin + + or alternatively (after the git checkout): + $ for p in $(cat $QEMUSRC/pc-bios/bios-pq/series); do git am $p; done + $ ./configure + $ make bios + - The VGA BIOS and the Cirrus VGA BIOS come from the LGPL VGA bios project (http://www.nongnu.org/vgabios/). The binary is based on the revision in vgabios-pq/HEAD with the patches in vgabios-pq/series applied. The git