Files
rtems/bsps/or1k/generic_or1k
Sebastian Huber b361eabd93 bsps: Replace bsp_specs with an empty file
This fixes an issue with the latest tool chain which adds the default
linker script in the endfile specification.

Update #3250.
2021-01-28 06:28:33 +01:00
..
2019-03-08 07:42:54 +01:00
2018-12-07 14:22:01 +01:00
2019-03-08 07:42:54 +01:00

This BSP can run on or1ksim, QEMU, jor1k [1] and OpenRISC supported FPGA boards.

$ git clone git@github.com:openrisc/or1ksim.git
$ cd or1ksim
$ mkdir builddir_or1ksim
$ cd builddir_or1ksim
$ ../configure --target=or1k-elf --prefix=/opt/or1ksim
$ make all
$ make install
$ export PATH=/opt/or1ksim/bin:$PATH

Configuration file "sim.cfg" should be provided for complex board
configurations at the current directory (which you run or1ksim from) or at
~/.or1k/

The current sim.cfg file that configures or1ksim emulator to RTEMS/or1ksim BSP
is at the same directory as this README. You can also use or1ksim script from
rtems-tools/sim-scripts.

From command line type:

$ or1k-elf-sim -f sim.cfg $PATH_TO_RTEMS_EXE

From QEMU:

$ qemu-system-or32 -serial mon:stdio -serial /dev/null -net none -nographic \
  -m 128M -kernel $PATH_TO_RTEMS_EXE

from sim-scripts:

$ or1ksim $PATH_TO_RTEMS_EXE
$ qemu-or1k $PATH_TO_RTEMS_EXE

[1] http://s-macke.github.io/jor1k/demos/rtems.html