summaryrefslogtreecommitdiffstats
path: root/legacy-networking/quick_start.rst
blob: edc3b296e50c3c2138bcf751c0cfa5a06d427e46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.. SPDX-License-Identifier: CC-BY-SA-4.0

Quick Start
#######

This legacy networking is now a standalone repository and needs to be built
separately.

The repository can be found here: https://git.rtems.org/rtems-net-legacy/

There's an RSB recipe to build rtems-net-legacy. Here's an example of building
rtems-net-legacy using RSB for powerpc/beatnik BSP with rtems version 6:

  .. code-block:: shell

        ../source-builder/sb-set-builder \
        --prefix=/path/to/rtems/prefix \
        6/rtems-net-legacy \
        --host=powerpc-rtems6 \
        --with-rtems-bsp=beatnik

Manually building the rtems-net-legacy repo:

  .. code-block:: shell

        git submodule init
        git submodule update
        ./waf configure --prefix=/path/to/rtems/prefix
        ./waf
        ./waf install

Please refer to README.waf in rtems-net-legacy repository for more details on
using waf with legacy networking.