Changeset 3859073 in rtems-docs
- Timestamp:
- 08/03/22 04:22:20 (17 months ago)
- Branches:
- master
- Children:
- 1d6dcf8
- Parents:
- f028448
- git-author:
- Chris Johns <chrisj@…> (08/03/22 04:22:20)
- git-committer:
- Chris Johns <chrisj@…> (08/03/22 04:28:19)
- Location:
- user/bsps
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
user/bsps/bsps-microblaze.rst
rf028448 r3859073 54 54 55 55 The ``BSP_MICROBLAZE_FPGA_DTB_HEADER_PATH`` BSP configuration option can then be 56 set to the path of the resulting source file, ``my_dtb.c``, to include it in the57 BSP build.56 set to the path of the resulting source file, ``my_dtb.c``, in the waf INI file 57 to include it in the BSP build. 58 58 59 59 .. code-block:: none … … 65 65 ------------------- 66 66 67 A .dtb(device tree blob) file should be provided to QEMU via the ``-hw-dtb``67 A ``.dtb`` (device tree blob) file should be provided to QEMU via the ``-hw-dtb`` 68 68 option. In the example command below, the device tree blob comes from the Xilinx 69 69 Petalinux KCU105 MicroBlaze BSP (https://www.xilinx.com/support/download/index.html/content/xilinx/en/downloadNav/embedded-design-tools.html). … … 95 95 .. code-block:: none 96 96 97 $ microblaze-rtems 6-gdb build/microblaze/kcu105_qemu/testsuites/samples/hello.exe97 $ microblaze-rtems@rtems-ver-major@-gdb build/microblaze/kcu105_qemu/testsuites/samples/hello.exe 98 98 (gdb) target remote localhost:1234 99 99 (gdb) break Init … … 147 147 .. code-block:: none 148 148 149 $ microblaze-rtems 6-gdb example.exe149 $ microblaze-rtems@rtems-ver-major@-gdb example.exe 150 150 (gdb) target extended-remote localhost:3002 151 151 (gdb) load -
user/bsps/bsps-powerpc.rst
rf028448 r3859073 37 37 .. code-block:: none 38 38 39 powerpc-rtems 5-objcopy -O binary -R .comment -S ticker.exe rtems39 powerpc-rtems@rtems-ver-major@-objcopy -O binary -R .comment -S ticker.exe rtems 40 40 gzip -9 -f rtems 41 powerpc-rtems 5-ld -o ticker.boot bootloader.o --just-symbols=ticker.exe -b binary rtems.gz -T ppcboot.lds -no-warn-mismatch42 powerpc-rtems 5-objcopy -O binary ticker.boot ticker.bin41 powerpc-rtems@rtems-ver-major@-ld -o ticker.boot bootloader.o --just-symbols=ticker.exe -b binary rtems.gz -T ppcboot.lds -no-warn-mismatch 42 powerpc-rtems@rtems-ver-major@-objcopy -O binary ticker.boot ticker.bin 43 43 44 44 mpc55xxevb … … 108 108 .. code-block:: none 109 109 110 powerpc-rtems 5-objcopy -O binary app.exe app.bin110 powerpc-rtems@rtems-ver-major@-objcopy -O binary app.exe app.bin 111 111 gzip -9 -f -c app.bin > app.bin.gz 112 112 mkimage -A ppc -O linux -T kernel -a 0x4000 -e 0x4000 -n RTEMS -d app.bin.gz app.img -
user/bsps/bsps-riscv.rst
rf028448 r3859073 51 51 --------------------------- 52 52 53 The following options are available at the configure command line. 53 The following options can be used in the BSP section of the ``waf`` 54 configuration INI file. The ``waf`` defaults can be used to inspect the values. 54 55 55 56 ``BSP_PRESS_KEY_FOR_RESET`` -
user/bsps/bsps-x86_64.rst
rf028448 r3859073 21 21 --------------------------- 22 22 23 There are no options available to ``configure`` at build time, at the moment.23 There are no BSP configuration options available at build time. 24 24 25 25 Testing with QEMU
Note: See TracChangeset
for help on using the changeset viewer.