summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-05-19 11:41:16 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-05-23 16:26:30 +0200
commit384600c11fe65dbb5a977508fa5d226135897914 (patch)
tree2745cde6186a0a0ece18302fc612295e2a1bd47b
parentlibbsd.txt: Move BSP related content (diff)
downloadrtems-libbsd-384600c11fe65dbb5a977508fa5d226135897914.tar.bz2
libbsd.txt: Remove installation overview
This is already covered by README.md
-rw-r--r--libbsd.txt50
1 files changed, 0 insertions, 50 deletions
diff --git a/libbsd.txt b/libbsd.txt
index c86ffc99..7f03d69f 100644
--- a/libbsd.txt
+++ b/libbsd.txt
@@ -7,56 +7,6 @@ RTEMS BSD Library Guide
== Getting Started
-
-You need a tool chain for RTEMS based on the latest RTEMS Source Builder (RSB).
-
-=== Installation Overview ===
-
-. You must configure your BSP with the +--disable-networking+ option to disable
-the old network stack. Make sure no header files of the old network stack are
-installed.
-
-. Clone the Git repository +git clone git://git.rtems.org/rtems-libbsd.git+.
-. Change into the RTEMS BSD library root directory.
-. If you want to run tests with a custom IP configuration instead of the default
- one you can use an adjusted `config.inc` configuration file.
-. Run +waf configure ...+.
-. Run +waf+.
-. Run +waf install+.
-
-Refer to the README.waf for Waf building instructions.
-
-Make sure the submodules have been initialised and are updated. If a 'git
-status' says `rtems_waf` need updating run the submodule update command:
-
- $ git submodule sync
- $ git submodule rtems_waf update
-
-=== Board Support Package Configuration and Build ===
-
-You need to configure RTEMS for the desired BSP and install it. The BSP must
-be configured with a disabled network stack. The BSD library containing the
-new network stack is a separate package. Using a BSP installation containing
-the old network stack may lead to confusion and unpredictable results.
-
-The following script is used to build the `arm/xilinx_zynq_a9_qemu` BSP for
-our internal testing purposes:
-
--------------------------------------------------------------------------------
-#!/bin/sh
-
-cd ${HOME}/sandbox
-rm -rf b-xilinx_zynq_a9_qemu
-mkdir b-xilinx_zynq_a9_qemu
-cd b-xilinx_zynq_a9_qemu
-${HOME}/git-rtems/configure \
- --prefix=${HOME}/sandbox/install \
- --target=arm-rtems5 \
- --enable-rtemsbsp=xilinx_zynq_a9_qemu \
- --disable-networking && \
- make && \
- make install
--------------------------------------------------------------------------------
=== BSD Library Configuration and Build ===
The build system based on the Waf build system. To build with Waf please refer