Re: [Qemu-devel] [PATCH target-arm] arm: armv7m: Respect elf entry point

2014-08-07 Thread Peter Crosthwaite
On Mon, Aug 4, 2014 at 5:54 PM, Alistair Francis alistai...@gmail.com wrote: On Sat, Aug 2, 2014 at 9:41 AM, Peter Crosthwaite crosthwaitepe...@gmail.com wrote: ARMv7M has it's own bootloader (separate from the regular ARM bootloader) that is elf aware. It is able to load elfs but it does not

Re: [Qemu-devel] [PATCH target-arm] arm: armv7m: Respect elf entry point

2014-08-04 Thread Peter Maydell
On 2 August 2014 00:41, Peter Crosthwaite crosthwaitepe...@gmail.com wrote: ARMv7M has it's own bootloader (separate from the regular ARM bootloader) that is elf aware. It is able to load elfs but it does not set the program counter to the elf entry point. Make it more consistent with the

Re: [Qemu-devel] [PATCH target-arm] arm: armv7m: Respect elf entry point

2014-08-04 Thread Alistair Francis
On Sat, Aug 2, 2014 at 9:41 AM, Peter Crosthwaite crosthwaitepe...@gmail.com wrote: ARMv7M has it's own bootloader (separate from the regular ARM bootloader) that is elf aware. It is able to load elfs but it does not set the program counter to the elf entry point. Make it more consistent with

[Qemu-devel] [PATCH target-arm] arm: armv7m: Respect elf entry point

2014-08-01 Thread Peter Crosthwaite
ARMv7M has it's own bootloader (separate from the regular ARM bootloader) that is elf aware. It is able to load elfs but it does not set the program counter to the elf entry point. Make it more consistent with the regular ARM bootloader by setting the program counter to the given elf entry point.