Re: [ipxe-devel] [ipxe] Fix no-PIE workaround for i386 builds (#49)

2016-03-16 Thread Christian Hesse
Reworked this a bit... I hope it covers all cases now. --- You are receiving this because you commented. Reply to this email directly or view it on GitHub: https://github.com/ipxe/ipxe/pull/49#issuecomment-197252661___ ipxe-devel mailing list ipxe-devel@

Re: [ipxe-devel] [ipxe] Fix no-PIE workaround for i386 builds (#49)

2016-03-16 Thread Christian Hesse
> Thanks. Your patch seems to completely remove the "-nopie" option for all > versions of gcc. I'm pretty sure this is going to break the versions that > required the workaround in the first place. I did not find a version of `gcc` that requires (or even understands) `-nopie`. Do you have any in

Re: [ipxe-devel] [ipxe] allow to build ISO image with EFI support (ipxe.eiso) (#50)

2016-03-16 Thread Christian Hesse
Ah, true... Looks like I just built in the correct order for things to work correctly. :-D I will have a look at the build system. --- You are receiving this because you commented. Reply to this email directly or view it on GitHub: https://github.com/ipxe/ipxe/pull/50#issuecomment-197219389__

Re: [ipxe-devel] [PATCH v2 0/4] Implement virtio 1.0 support

2016-03-16 Thread Ladi Prosek
On Tue, Mar 15, 2016 at 7:02 PM, Stefan Hajnoczi wrote: > On Mon, Mar 14, 2016 at 03:48:21PM +0100, Ladi Prosek wrote: >> The goal here is to support booting from modern and transitional >> virtio-net devices using the new virtio 1.0 protocol. The code >> strives to comply with the virtio 1.0 spec

Re: [ipxe-devel] [PATCH v2 3/4] [virtio] Add virtio 1.0 PCI support

2016-03-16 Thread Ladi Prosek
On Tue, Mar 15, 2016 at 6:54 PM, Stefan Hajnoczi wrote: > On Mon, Mar 14, 2016 at 03:48:24PM +0100, Ladi Prosek wrote: >> @@ -130,7 +131,11 @@ void vring_kick(unsigned int ioaddr, struct >> vring_virtqueue *vq, int num_added) >> vr->avail->idx += num_added; >> >> mb(); >> - if (!(vr->us

Re: [ipxe-devel] [PATCH v2 2/4] [virtio] Add virtio 1.0 constants and data structures

2016-03-16 Thread Ladi Prosek
On Tue, Mar 15, 2016 at 6:36 PM, Stefan Hajnoczi wrote: > On Mon, Mar 14, 2016 at 03:48:23PM +0100, Ladi Prosek wrote: >> Virtio 1.0 introduces new constants and data structures, common to >> all devices as well as specific to virtio-net. This commit adds a >> subset of these to be able to drive t