All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ipxe: update to newer commit
@ 2017-06-12 15:04 Wei Liu
  2017-06-19 11:33 ` Wei Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Wei Liu @ 2017-06-12 15:04 UTC (permalink / raw)
  To: Xen-devel; +Cc: Ian Jackson, Wei Liu, Zhongze Liu

To get 5f85cbb9ee1c00cec81a848a9e871ad5d1e7f53f to placate gcc 7.

The only patch we have applies cleanly.

Reported-by: Zhongze Liu <blackskygg@gmail.com>
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: Zhongze Liu <blackskygg@gmail.com>
---
 tools/firmware/etherboot/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/firmware/etherboot/Makefile b/tools/firmware/etherboot/Makefile
index 459a1e22e6..89d9ace8c8 100644
--- a/tools/firmware/etherboot/Makefile
+++ b/tools/firmware/etherboot/Makefile
@@ -10,7 +10,7 @@ else
 IPXE_GIT_URL ?= git://git.ipxe.org/ipxe.git
 endif
 
-IPXE_GIT_TAG := 827dd1bfee67daa683935ce65316f7e0f057fe1c
+IPXE_GIT_TAG := 356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d
 
 IPXE_TARBALL_URL ?= $(XEN_EXTFILES_URL)/ipxe-git-$(IPXE_GIT_TAG).tar.gz
 
-- 
2.11.0


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

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] ipxe: update to newer commit
  2017-06-12 15:04 [PATCH] ipxe: update to newer commit Wei Liu
@ 2017-06-19 11:33 ` Wei Liu
  2017-06-19 13:00   ` Ian Jackson
  0 siblings, 1 reply; 8+ messages in thread
From: Wei Liu @ 2017-06-19 11:33 UTC (permalink / raw)
  To: Xen-devel; +Cc: Ian Jackson, Wei Liu, Zhongze Liu

On Mon, Jun 12, 2017 at 04:04:17PM +0100, Wei Liu wrote:
> To get 5f85cbb9ee1c00cec81a848a9e871ad5d1e7f53f to placate gcc 7.
> 
> The only patch we have applies cleanly.
> 
> Reported-by: Zhongze Liu <blackskygg@gmail.com>
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>

Ping?

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ipxe: update to newer commit
  2017-06-19 11:33 ` Wei Liu
@ 2017-06-19 13:00   ` Ian Jackson
  2017-08-21 13:28     ` Boris Ostrovsky
  0 siblings, 1 reply; 8+ messages in thread
From: Ian Jackson @ 2017-06-19 13:00 UTC (permalink / raw)
  To: Wei Liu; +Cc: Xen-devel, Zhongze Liu

Wei Liu writes ("Re: [PATCH] ipxe: update to newer commit"):
> On Mon, Jun 12, 2017 at 04:04:17PM +0100, Wei Liu wrote:
> > To get 5f85cbb9ee1c00cec81a848a9e871ad5d1e7f53f to placate gcc 7.
> > 
> > The only patch we have applies cleanly.
> > 
> > Reported-by: Zhongze Liu <blackskygg@gmail.com>
> > Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> 
> Ping?

I don't think I have any basis to withhold an ack.  Please update this
in xen.git#staging:Config.mk.  Obviously this isn't really suitable
for staging-4.9.

Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>

Thanks,
Ian.

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ipxe: update to newer commit
  2017-06-19 13:00   ` Ian Jackson
@ 2017-08-21 13:28     ` Boris Ostrovsky
  2017-08-21 13:33       ` Wei Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Boris Ostrovsky @ 2017-08-21 13:28 UTC (permalink / raw)
  To: Ian Jackson, Wei Liu; +Cc: Xen-devel, Zhongze Liu

On 06/19/2017 09:00 AM, Ian Jackson wrote:
> Wei Liu writes ("Re: [PATCH] ipxe: update to newer commit"):
>> On Mon, Jun 12, 2017 at 04:04:17PM +0100, Wei Liu wrote:
>>> To get 5f85cbb9ee1c00cec81a848a9e871ad5d1e7f53f to placate gcc 7.
>>>
>>> The only patch we have applies cleanly.
>>>
>>> Reported-by: Zhongze Liu <blackskygg@gmail.com>
>>> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
>> Ping?
> I don't think I have any basis to withhold an ack.  Please update this
> in xen.git#staging:Config.mk.  Obviously this isn't really suitable
> for staging-4.9.
>
> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
>
> Thanks,
> Ian.

Did the updated binary ever got uploaded to xenbits? I don't see it there.

if ! /usr/bin/wget -c -O _ipxe.tar.gz
http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz;
then \
        git clone git://git.ipxe.org/ipxe.git ipxe.git; \
        (cd ipxe.git && git archive --format=tar --prefix=ipxe/ \
        356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d | gzip -n
>../_ipxe.tar.gz); \
        rm -rf ipxe.git; \
    fi
--2017-08-21 09:21:09-- 
http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz
Resolving xenbits.xen.org... 104.239.192.120
Connecting to xenbits.xen.org|104.239.192.120|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2017-08-21 09:21:10 ERROR 404: Not Found.


-boris

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ipxe: update to newer commit
  2017-08-21 13:28     ` Boris Ostrovsky
@ 2017-08-21 13:33       ` Wei Liu
  2017-08-21 13:49         ` Boris Ostrovsky
  0 siblings, 1 reply; 8+ messages in thread
From: Wei Liu @ 2017-08-21 13:33 UTC (permalink / raw)
  To: Boris Ostrovsky; +Cc: Wei Liu, Ian Jackson, Zhongze Liu, Xen-devel

On Mon, Aug 21, 2017 at 09:28:15AM -0400, Boris Ostrovsky wrote:
> On 06/19/2017 09:00 AM, Ian Jackson wrote:
> > Wei Liu writes ("Re: [PATCH] ipxe: update to newer commit"):
> >> On Mon, Jun 12, 2017 at 04:04:17PM +0100, Wei Liu wrote:
> >>> To get 5f85cbb9ee1c00cec81a848a9e871ad5d1e7f53f to placate gcc 7.
> >>>
> >>> The only patch we have applies cleanly.
> >>>
> >>> Reported-by: Zhongze Liu <blackskygg@gmail.com>
> >>> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> >> Ping?
> > I don't think I have any basis to withhold an ack.  Please update this
> > in xen.git#staging:Config.mk.  Obviously this isn't really suitable
> > for staging-4.9.
> >
> > Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
> >
> > Thanks,
> > Ian.
> 
> Did the updated binary ever got uploaded to xenbits? I don't see it there.
> 
> if ! /usr/bin/wget -c -O _ipxe.tar.gz
> http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz;
> then \
>         git clone git://git.ipxe.org/ipxe.git ipxe.git; \
>         (cd ipxe.git && git archive --format=tar --prefix=ipxe/ \
>         356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d | gzip -n
> >../_ipxe.tar.gz); \
>         rm -rf ipxe.git; \
>     fi
> --2017-08-21 09:21:09-- 
> http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz
> Resolving xenbits.xen.org... 104.239.192.120
> Connecting to xenbits.xen.org|104.239.192.120|:80... connected.
> HTTP request sent, awaiting response... 404 Not Found
> 2017-08-21 09:21:10 ERROR 404: Not Found.
> 

The tarball is not present yet.

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ipxe: update to newer commit
  2017-08-21 13:33       ` Wei Liu
@ 2017-08-21 13:49         ` Boris Ostrovsky
  2017-08-21 13:50           ` Wei Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Boris Ostrovsky @ 2017-08-21 13:49 UTC (permalink / raw)
  To: Wei Liu; +Cc: Xen-devel, Ian Jackson, Zhongze Liu

On 08/21/2017 09:33 AM, Wei Liu wrote:
> On Mon, Aug 21, 2017 at 09:28:15AM -0400, Boris Ostrovsky wrote:
>> On 06/19/2017 09:00 AM, Ian Jackson wrote:
>>> Wei Liu writes ("Re: [PATCH] ipxe: update to newer commit"):
>>>> On Mon, Jun 12, 2017 at 04:04:17PM +0100, Wei Liu wrote:
>>>>> To get 5f85cbb9ee1c00cec81a848a9e871ad5d1e7f53f to placate gcc 7.
>>>>>
>>>>> The only patch we have applies cleanly.
>>>>>
>>>>> Reported-by: Zhongze Liu <blackskygg@gmail.com>
>>>>> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
>>>> Ping?
>>> I don't think I have any basis to withhold an ack.  Please update this
>>> in xen.git#staging:Config.mk.  Obviously this isn't really suitable
>>> for staging-4.9.
>>>
>>> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
>>>
>>> Thanks,
>>> Ian.
>> Did the updated binary ever got uploaded to xenbits? I don't see it there.
>>
>> if ! /usr/bin/wget -c -O _ipxe.tar.gz
>> http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz;
>> then \
>>         git clone git://git.ipxe.org/ipxe.git ipxe.git; \
>>         (cd ipxe.git && git archive --format=tar --prefix=ipxe/ \
>>         356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d | gzip -n
>>> ../_ipxe.tar.gz); \
>>         rm -rf ipxe.git; \
>>     fi
>> --2017-08-21 09:21:09-- 
>> http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz
>> Resolving xenbits.xen.org... 104.239.192.120
>> Connecting to xenbits.xen.org|104.239.192.120|:80... connected.
>> HTTP request sent, awaiting response... 404 Not Found
>> 2017-08-21 09:21:10 ERROR 404: Not Found.
>>
> The tarball is not present yet.


Yes, that much I figured out ;-)

I was really asking when it is going to show up there.

-boris

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ipxe: update to newer commit
  2017-08-21 13:49         ` Boris Ostrovsky
@ 2017-08-21 13:50           ` Wei Liu
  2017-10-17 16:32             ` Ian Jackson
  0 siblings, 1 reply; 8+ messages in thread
From: Wei Liu @ 2017-08-21 13:50 UTC (permalink / raw)
  To: Boris Ostrovsky; +Cc: Ian Jackson, Wei Liu, Zhongze Liu, Xen-devel

On Mon, Aug 21, 2017 at 09:49:01AM -0400, Boris Ostrovsky wrote:
> On 08/21/2017 09:33 AM, Wei Liu wrote:
> > On Mon, Aug 21, 2017 at 09:28:15AM -0400, Boris Ostrovsky wrote:
> >> On 06/19/2017 09:00 AM, Ian Jackson wrote:
> >>> Wei Liu writes ("Re: [PATCH] ipxe: update to newer commit"):
> >>>> On Mon, Jun 12, 2017 at 04:04:17PM +0100, Wei Liu wrote:
> >>>>> To get 5f85cbb9ee1c00cec81a848a9e871ad5d1e7f53f to placate gcc 7.
> >>>>>
> >>>>> The only patch we have applies cleanly.
> >>>>>
> >>>>> Reported-by: Zhongze Liu <blackskygg@gmail.com>
> >>>>> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> >>>> Ping?
> >>> I don't think I have any basis to withhold an ack.  Please update this
> >>> in xen.git#staging:Config.mk.  Obviously this isn't really suitable
> >>> for staging-4.9.
> >>>
> >>> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
> >>>
> >>> Thanks,
> >>> Ian.
> >> Did the updated binary ever got uploaded to xenbits? I don't see it there.
> >>
> >> if ! /usr/bin/wget -c -O _ipxe.tar.gz
> >> http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz;
> >> then \
> >>         git clone git://git.ipxe.org/ipxe.git ipxe.git; \
> >>         (cd ipxe.git && git archive --format=tar --prefix=ipxe/ \
> >>         356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d | gzip -n
> >>> ../_ipxe.tar.gz); \
> >>         rm -rf ipxe.git; \
> >>     fi
> >> --2017-08-21 09:21:09-- 
> >> http://xenbits.xen.org/xen-extfiles/ipxe-git-356f6c1b64d7a97746d1816cef8ca22bdd8d0b5d.tar.gz
> >> Resolving xenbits.xen.org... 104.239.192.120
> >> Connecting to xenbits.xen.org|104.239.192.120|:80... connected.
> >> HTTP request sent, awaiting response... 404 Not Found
> >> 2017-08-21 09:21:10 ERROR 404: Not Found.
> >>
> > The tarball is not present yet.
> 
> 
> Yes, that much I figured out ;-)
> 
> I was really asking when it is going to show up there.
> 

Ian is away.  I don't know who else has permission to generate and
upload that tarball. :-)

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ipxe: update to newer commit
  2017-08-21 13:50           ` Wei Liu
@ 2017-10-17 16:32             ` Ian Jackson
  0 siblings, 0 replies; 8+ messages in thread
From: Ian Jackson @ 2017-10-17 16:32 UTC (permalink / raw)
  To: Wei Liu; +Cc: Xen-devel, Boris Ostrovsky, Zhongze Liu

Wei Liu writes ("Re: [Xen-devel] [PATCH] ipxe: update to newer commit"):
> Ian is away.  I don't know who else has permission to generate and
> upload that tarball. :-)

I have done it now.  The permission required is the ability to become
xen@xenbits.

Ian.

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-10-17 16:44 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-12 15:04 [PATCH] ipxe: update to newer commit Wei Liu
2017-06-19 11:33 ` Wei Liu
2017-06-19 13:00   ` Ian Jackson
2017-08-21 13:28     ` Boris Ostrovsky
2017-08-21 13:33       ` Wei Liu
2017-08-21 13:49         ` Boris Ostrovsky
2017-08-21 13:50           ` Wei Liu
2017-10-17 16:32             ` Ian Jackson

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.