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 ?
ARM emulation
Re: ARM emulation
Use qemu's "qemu-system-arm" executable, not the "qemu-arm" one (the latter is for user mode, and only runs ELFs).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 ?
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.