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

2016-08-09 Thread Peter Maydell
On 3 August 2016 at 21:06, 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 Reviewed-by: Peter Maydell thanks -- PMM

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

2016-08-03 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 --- V10: - Base checks on the EM_NONE macro V9: - Update documentation V8: - Move into load_elf64/load_elf32 V7: - Fix typo inc