ARM emulation

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Beastie
Posts: 14
Joined: Sun Jan 21, 2007 6:31 pm

ARM emulation

Post by Beastie »

Hi guys,

I'm currently experimenting the ARM arch.
Most emulators like qemu runs elf executables, However I want to run my binary bootloader. How can I achieve it ?
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

Re: ARM emulation

Post by JamesM »

Beastie wrote:Hi guys,

I'm currently experimenting the ARM arch.
Most emulators like qemu runs elf executables, However I want to run my binary bootloader. How can I achieve it ?
Use qemu's "qemu-system-arm" executable, not the "qemu-arm" one (the latter is for user mode, and only runs ELFs).

qemu's system emulator also accepts ELFs (with the -kernel option), but this is indended for quick booting of linux images. It will accept any normal boot media (such as the mtdblock flash found in beagleboards) and boot off that.
Post Reply