Changeset d6ad59d in rtems-libbsd
- Timestamp:
- 06/13/16 09:59:04 (7 years ago)
- Branches:
- 5, 5-freebsd-12, 6-freebsd-12, freebsd-9.3, master
- Children:
- 5851034
- Parents:
- 58c4e1c5
- git-author:
- Sebastian Huber <sebastian.huber@…> (06/13/16 09:59:04)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/13/16 10:00:08)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libbsd.txt
r58c4e1c5 rd6ad59d 57 57 === Board Support Package Requirements === 58 58 59 The RTEMS version must be at least 4.1 1. The Board Support Package (BSP)59 The RTEMS version must be at least 4.12. The Board Support Package (BSP) 60 60 should support the 61 61 http://www.rtems.org/onlinedocs/doxygen/cpukit/html/group\__rtems\__interrupt__extension.html[Interrupt Manager Extension] … … 87 87 the old network stack may lead to confusion and unpredictable results. 88 88 89 The following script is used to build the `arm/ realview_pbx_a9_qemu` BSP for89 The following script is used to build the `arm/xilinx_zynq_a9_qemu` BSP for 90 90 our internal testing purposes: 91 91 … … 94 94 95 95 cd ${HOME}/sandbox 96 rm -rf b- realview_pbx_a9_qemu97 mkdir b- realview_pbx_a9_qemu98 cd b- realview_pbx_a9_qemu96 rm -rf b-xilinx_zynq_a9_qemu 97 mkdir b-xilinx_zynq_a9_qemu 98 cd b-xilinx_zynq_a9_qemu 99 99 ${HOME}/git-rtems/configure \ 100 100 --prefix=${HOME}/sandbox/install \ 101 --target=arm-rtems4.1 1\102 --enable-rtemsbsp= realview_pbx_a9_qemu \101 --target=arm-rtems4.12 \ 102 --enable-rtemsbsp=xilinx_zynq_a9_qemu \ 103 103 --disable-networking && \ 104 104 make && \ … … 106 106 ------------------------------------------------------------------------------- 107 107 108 The `arm/ realview_pbx_a9_qemu` BSP running on the Qemu simulator has some108 The `arm/xilinx_zynq_a9_qemu` BSP running on the Qemu simulator has some 109 109 benefits for development and test of the BSD library 110 110 … … 127 127 ------------------------------------------------------------------------------- 128 128 # Mandatory: Select your BSP and installation prefix 129 TARGET = arm-rtems4.1 1130 BSP = realview_pbx_a9_qemu129 TARGET = arm-rtems4.12 130 BSP = xilinx_zynq_a9_qemu 131 131 PREFIX = $(HOME)/sandbox/install 132 132 … … 384 384 -net tap,ifname=qtap1,script=no,downscript=no \ 385 385 -nodefaults -nographic -serial stdio 386 ------------------------------------------------------------------------------- 387 388 ------------------------------------------------------------------------------- 389 qemu-system-arm \ 390 -serial null \ 391 -serial mon:stdio \ 392 -nographic \ 393 -M xilinx-zynq-a9 \ 394 -net nic,model=cadence_gem,macaddr=0e:b0:ba:5e:ba:11 \ 395 -net tap,ifname=qtap1,script=no,downscript=no \ 396 -m 256M \ 397 -kernel build/arm-rtems4.12-xilinx_zynq_a9_qemu/media01.exe 386 398 ------------------------------------------------------------------------------- 387 399
Note: See TracChangeset
for help on using the changeset viewer.