Re: [Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2018-01-29 Thread Anatol Pomozov
Hi On Mon, Jan 15, 2018 at 7:41 AM, Kevin Wolf wrote: > Am 13.10.2017 um 01:54 hat Anatol Pomozov geschrieben: >> Multiboot may load section headers and all sections (even those that are >> not part of any segment) to target memory. >> >> Tested with an ELF application that uses data from strings

Re: [Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2018-01-15 Thread Kevin Wolf
Am 13.10.2017 um 01:54 hat Anatol Pomozov geschrieben: > Multiboot may load section headers and all sections (even those that are > not part of any segment) to target memory. > > Tested with an ELF application that uses data from strings table > section. > > Signed-off-by: Anatol Pomozov > --- >

Re: [Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2017-11-20 Thread Kevin Wolf
Am 17.11.2017 um 22:33 hat Anatol Pomozov geschrieben: > On Tue, Oct 31, 2017 at 11:38 AM, Anatol Pomozov > wrote: > > Hi > > > > On Thu, Oct 19, 2017 at 2:36 AM, Kevin Wolf wrote: > >> Am 18.10.2017 um 19:22 hat Anatol Pomozov geschrieben: > >>> Hello qemu-devs, > >>> > >>> This patchset has bee

Re: [Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2017-11-17 Thread Anatol Pomozov
Hello On Tue, Oct 31, 2017 at 11:38 AM, Anatol Pomozov wrote: > Hi > > On Thu, Oct 19, 2017 at 2:36 AM, Kevin Wolf wrote: >> Am 18.10.2017 um 19:22 hat Anatol Pomozov geschrieben: >>> Hello qemu-devs, >>> >>> This patchset has been posted a while ago. I would like to move >>> forward with it and

Re: [Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2017-10-31 Thread Anatol Pomozov
Hi On Thu, Oct 19, 2017 at 2:36 AM, Kevin Wolf wrote: > Am 18.10.2017 um 19:22 hat Anatol Pomozov geschrieben: >> Hello qemu-devs, >> >> This patchset has been posted a while ago. I would like to move >> forward with it and look at the next task (e.g. multiboot2 support in >> QEMU). Who is the mu

Re: [Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2017-10-19 Thread Kevin Wolf
Am 18.10.2017 um 19:22 hat Anatol Pomozov geschrieben: > Hello qemu-devs, > > This patchset has been posted a while ago. I would like to move > forward with it and look at the next task (e.g. multiboot2 support in > QEMU). Who is the multiboot code maintainer who can help to review > this patchset

Re: [Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2017-10-18 Thread Anatol Pomozov
Hello qemu-devs, This patchset has been posted a while ago. I would like to move forward with it and look at the next task (e.g. multiboot2 support in QEMU). Who is the multiboot code maintainer who can help to review this patchset and give go/no-go answer? On Thu, Oct 12, 2017 at 4:54 PM, Anatol

[Qemu-devel] [PATCH 3/4] multiboot: load elf sections and section headers

2017-10-12 Thread Anatol Pomozov
Multiboot may load section headers and all sections (even those that are not part of any segment) to target memory. Tested with an ELF application that uses data from strings table section. Signed-off-by: Anatol Pomozov --- hw/core/loader.c | 8 +-- hw/i386/multiboot.c