From patchwork Mon Dec 7 03:19:28 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Isaku Yamahata X-Patchwork-Id: 40440 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 40168B6EF2 for ; Mon, 7 Dec 2009 14:20:25 +1100 (EST) Received: from localhost ([127.0.0.1]:32832 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NHU97-0007tF-VJ for incoming@patchwork.ozlabs.org; Sun, 06 Dec 2009 22:20:22 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NHU8f-0007rz-Fo for qemu-devel@nongnu.org; Sun, 06 Dec 2009 22:19:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NHU8a-0007ol-7m for qemu-devel@nongnu.org; Sun, 06 Dec 2009 22:19:52 -0500 Received: from [199.232.76.173] (port=43344 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NHU8a-0007oi-29 for qemu-devel@nongnu.org; Sun, 06 Dec 2009 22:19:48 -0500 Received: from mail.valinux.co.jp ([210.128.90.3]:56337) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NHU8Z-0005Gj-7R for qemu-devel@nongnu.org; Sun, 06 Dec 2009 22:19:47 -0500 Received: from ps.local.valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by mail.valinux.co.jp (Postfix) with SMTP id 9AA554A242; Mon, 7 Dec 2009 12:19:42 +0900 (JST) Received: (nullmailer pid 19075 invoked by uid 1000); Mon, 07 Dec 2009 03:19:28 -0000 Date: Mon, 7 Dec 2009 12:19:28 +0900 From: Isaku Yamahata To: Anthony Liguori Subject: Re: [Qemu-devel] Re: [Qemu-commits] [COMMIT c34ebfd] Bring pcbios, seabios, and vgabios into the tree as git submodules. Right now, Message-ID: <20091207031928.GG3670@valinux.co.jp> References: <200909041515.n84FFwDS025473@d01av02.pok.ibm.com> <4AA605FC.1030500@redhat.com> <4AA6576B.9090103@us.ibm.com> <20090930023329.GH24813%yamahata@valinux.co.jp> <4AC356D0.6070901@us.ibm.com> <20091207021412.GE3670@valinux.co.jp> <4B1C6DDB.7020301@codemonkey.ws> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <4B1C6DDB.7020301@codemonkey.ws> User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: clamav-milter 0.95.2 at va-mail.local.valinux.co.jp X-Virus-Status: Clean X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Gerd Hoffmann , "qemu-devel@nongnu.org" X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org On Sun, Dec 06, 2009 at 08:52:11PM -0600, Anthony Liguori wrote: > Isaku Yamahata wrote: >> On Wed, Sep 30, 2009 at 08:02:08AM -0500, Anthony Liguori wrote: >> >>> Hi Isaku, >>> >>> Isaku Yamahata wrote: >>> >>>> Is there any documentation available about where those git repo are >>>> and how to compile? >>>> >>>> Fortunately I was able to find the repo >>>> in git.qemu.org by digging out the ML archive. >>>> However there should be some kind of description >>>> in pc-bios/README or somewhere else. >>>> >>> Good point, I'll work on that. >>> >> >> What happened to this? >> At this moment, there is no document which describes the official >> procedure to compile BIOSes. >> I suppose this kind of document is suitable for 0.12.0 release. >> > > There's really nothing that clever about it. > > $ git clone git://git.qemu.org/qemu.git > $ cd qemu > $ git submodule update --init > $ cd roms/seabios > $ make > $ cp out/bios.bin ../../pc-bios/bios.bin > > The last three steps could be totally automated by the build system. > That's what I'd like to see. So the repository will be moved from nongnu to git.qemu.org even for qemu itself? Anyway here's the patch. From 60c5325a84776beb0dd20581396126a0e068e707 Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Mon, 7 Dec 2009 12:15:25 +0900 Subject: [PATCH] pc-bios: update README to describe compile BIOSes. Add the procedure to compile BIOSes. Signed-off-by: Isaku Yamahata --- pc-bios/README | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pc-bios/README b/pc-bios/README index 3f2c978..9bf2532 100644 --- a/pc-bios/README +++ b/pc-bios/README @@ -26,3 +26,16 @@ virtio 1af4:1000 http://rom-o-matic.net/ + +- To compile PC related BIOSes + git.qemu.org holds the repositories for BIOSes sources. + So you can compile BIOSes by following steps. + + $ git clone git://git.qemu.org/qemu.git + $ cd qemu + $ git submodule update --init + $ cd roms/seabios + $ make + $ cp out/bios.bin ../../pc-bios/bios.bin + + The last three steps could be totally automated by the build system.