Re: [Qemu-devel] [PATCH v8 1/5] loader: Allow ELF loader to auto-detect the ELF arch

2016-07-12 Thread Alistair Francis
On Tue, Jul 12, 2016 at 9:40 AM, Peter Maydell wrote: > On 2 July 2016 at 02:07, Alistair Francis wrote: >> If the caller didn't specify an architecture for the ELF machine >> the load_elf() function will auto detect it based on the ELF file. >> >> Signed-off-by: Alistair Francis >> --- >> V8: >

Re: [Qemu-devel] [PATCH v8 1/5] loader: Allow ELF loader to auto-detect the ELF arch

2016-07-12 Thread Peter Maydell
On 2 July 2016 at 02:07, Alistair Francis wrote: > If the caller didn't specify an architecture for the ELF machine > the load_elf() function will auto detect it based on the ELF file. > > Signed-off-by: Alistair Francis > --- > V8: > - Move into load_elf64/load_elf32 > V7: > - Fix typo > > in

[Qemu-devel] [PATCH v8 1/5] loader: Allow ELF loader to auto-detect the ELF arch

2016-07-01 Thread Alistair Francis
If the caller didn't specify an architecture for the ELF machine the load_elf() function will auto detect it based on the ELF file. Signed-off-by: Alistair Francis --- V8: - Move into load_elf64/load_elf32 V7: - Fix typo include/hw/elf_ops.h | 5 + 1 file changed, 5 insertions(+) diff --