All of lore.kernel.org
 help / color / mirror / Atom feed
From: Attilio Rao <attilio.rao@citrix.com>
To: "Roger Pau Monné" <roger.pau@entel.upc.edu>
Cc: Christoph Egger <Christoph.Egger@amd.com>,
	"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
	Ian Jackson <Ian.Jackson@eu.citrix.com>,
	Ian Campbell <Ian.Campbell@citrix.com>
Subject: Re: [PATCH] [PATCH v3] Fetch the OVMF repository from specific git mirror and enable it
Date: Tue, 20 Mar 2012 11:28:50 +0000	[thread overview]
Message-ID: <4F6869F2.2070305@citrix.com> (raw)
In-Reply-To: <CAPLaKK4h3Jfs35H6kHFWFWfRwdXK3x=9VxDHk7Y0rQuu4YA0PA@mail.gmail.com>

On 20/03/12 11:16, Roger Pau Monné wrote:
> 2012/3/1 Attilio Rao<attilio.rao@citrix.com>:
>    
>> Signed-off-by: Attilio Rao<attilio.rao@citrix.com>
>>
>> ---
>>
>> Differences with previous version:
>> - Add ovmf entries to .hgignore
>> - Add a rule in tools/firmware/Makefile for ovmf-find in order to cope with
>>   already cloned git repositories
>>
>> diff -r d7fe4cd831a0 -r 402a1e16b2d8 .hgignore
>> --- a/.hgignore Wed Feb 29 17:01:41 2012 +0000
>> +++ b/.hgignore Thu Mar 01 19:27:17 2012 +0000
>> @@ -287,6 +287,8 @@
>>   ^tools/xm-test/lib/XmTestLib/config.py$
>>   ^tools/xm-test/lib/XmTestReport/xmtest.py$
>>   ^tools/xm-test/tests/.*\.test$
>> +^tools/firmware/ovmf-remote
>> +^tools/firmware/ovmf$
>>   ^tools/qemu-xen-traditional-dir-remote
>>   ^tools/qemu-xen-traditional-dir$
>>   ^tools/qemu-xen-dir-remote
>> diff -r d7fe4cd831a0 -r 402a1e16b2d8 Config.mk
>> --- a/Config.mk Wed Feb 29 17:01:41 2012 +0000
>> +++ b/Config.mk Thu Mar 01 19:27:17 2012 +0000
>> @@ -187,12 +187,15 @@ QEMU_REMOTE=git://xenbits.xensource.com/
>>   endif
>>
>>   ifeq ($(GIT_HTTP),y)
>> +OVMF_UPSTREAM_URL ?= http://xenbits.xen.org/git-http/ovmf.git
>>   QEMU_UPSTREAM_URL ?= http://xenbits.xen.org/git-http/qemu-upstream-unstable.git
>>   SEABIOS_UPSTREAM_URL ?= http://xenbits.xen.org/git-http/seabios.git
>>   else
>> +OVMF_UPSTREAM_URL ?= git://xenbits.xen.org/ovmf.git
>>   QEMU_UPSTREAM_URL ?= git://xenbits.xen.org/qemu-upstream-unstable.git
>>   SEABIOS_UPSTREAM_URL ?= git://xenbits.xen.org/seabios.git
>>   endif
>> +OVMF_UPSTREAM_REVISION ?= b0855f925c6e2e0b21fbb03fab4b5fb5b6876871
>>   QEMU_UPSTREAM_REVISION ?= master
>>   SEABIOS_UPSTREAM_TAG ?= c69e288adfe6c273df4b1f3d9c223d8a4fb613cd
>>   # Wed Feb 8 20:23:36 2012 -0500
>> @@ -200,7 +203,7 @@ SEABIOS_UPSTREAM_TAG ?= c69e288adfe6c273
>>
>>   ETHERBOOT_NICS ?= rtl8139 8086100e
>>
>> -CONFIG_OVMF ?= n
>> +CONFIG_OVMF ?= y
>>      
> Since this is in the tools directory (and I think it's a tools only
> thing), shouldn't this option be set by the configure script instead
> of hardcoding it in Config.mk?
>
>    

I'm really just following SEABIOS here, whatever policy we do for OVMF 
should be mirrored in SeaBIOS I think.

Thanks,
Attilio

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

      reply	other threads:[~2012-03-20 11:28 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-01 19:28 [PATCH] [PATCH v3] Fetch the OVMF repository from specific git mirror and enable it Attilio Rao
2012-03-14 12:08 ` Ian Jackson
2012-03-14 13:14   ` Attilio Rao
2012-03-17 22:33   ` Attilio Rao
2012-03-19 16:36     ` Ian Jackson
2012-03-19 17:40       ` Attilio Rao
2012-03-19 17:50         ` Attilio Rao
2012-03-20 10:06           ` Christoph Egger
2012-03-20 10:47             ` Attilio Rao
2012-03-20 11:04               ` Christoph Egger
2012-03-20 11:11                 ` Roger Pau Monné
2012-03-20 11:09             ` Attilio Rao
2012-03-20 11:57               ` Christoph Egger
2012-03-20 12:12                 ` Attilio Rao
2012-03-20 13:52                   ` Christoph Egger
2012-03-20 16:30                     ` Ian Jackson
2012-03-20 16:44                       ` Christoph Egger
2012-03-14 13:10 ` Ian Campbell
2012-03-14 13:14   ` Attilio Rao
2012-03-14 14:11   ` Ian Jackson
2012-03-14 14:21     ` Ian Campbell
2012-03-20 11:16 ` Roger Pau Monné
2012-03-20 11:28   ` Attilio Rao [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F6869F2.2070305@citrix.com \
    --to=attilio.rao@citrix.com \
    --cc=Christoph.Egger@amd.com \
    --cc=Ian.Campbell@citrix.com \
    --cc=Ian.Jackson@eu.citrix.com \
    --cc=roger.pau@entel.upc.edu \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.