Skip to main content

Posts

Showing posts from April, 2015

[RTEMS/QEMU] boot RTEMS on ARM QEMU

Thanks for Heshame Almatary. Now I am able to run RTEMS on QEMU-arm. To prevent from any wrong setup, he recommended me to adopt RTEMS Source Builder(RSB) to build up the qemu and run with following commands: "qemu-system-arm -no-reboot -net none -nographic -smp 2 -icount auto -M realview-pbx-a9 -m 256M -kernel ticker.exe"  without debugger "qemu-system-arm -S -s -no-reboot -net none -nographic -smp 2 -icount auto -M realview-pbx-a9 -m 256M -kernel ticker.exe" with GDB I mimicked this tutorial and build up my target. [0] http://heshamelmatary.blogspot.de/2015/02/howto-5-run-rtems-on-qemu.html [1] http://heshamelmatary.blogspot.co.uk/2015/02/howto-4-run-rtems-on-or1ksim.html I remove some options, i.e., smp, from his recommendation and I get the result: ---dump--- ./qemu-system-arm -no-reboot -nographic -M realview-pbx-a9 -m 256M -kernel /home/khchen/development/build-rtems/arm-rtems4.11/ c/realview_pbx_a9_qemu/testsuites/samples/ticker/ticker.exe ...