summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2021-04-15 14:28:36 -0600
committerVijay Kumar Banerjee <vijay@rtems.org>2021-04-26 08:30:39 -0600
commit199cc8e5764881e3fd83966c842c25c055444b86 (patch)
treef3017a245cd85bf0f7ad1f2ff507af5d6328d159
parentc-user: Generate message manager documentation (diff)
downloadrtems-docs-199cc8e5764881e3fd83966c842c25c055444b86.tar.bz2
legacy-networking: Add note with build instructions for rtems-net-legacy
-rw-r--r--legacy-networking/index.rst1
-rw-r--r--legacy-networking/quick_start.rst33
2 files changed, 34 insertions, 0 deletions
diff --git a/legacy-networking/index.rst b/legacy-networking/index.rst
index b85119d..acbfd35 100644
--- a/legacy-networking/index.rst
+++ b/legacy-networking/index.rst
@@ -22,6 +22,7 @@ RTEMS Legacy Network User Manual (|version|).
:numbered:
preface
+ quick_start
network_task_structure
networking_driver
using_networking_rtems_app
diff --git a/legacy-networking/quick_start.rst b/legacy-networking/quick_start.rst
new file mode 100644
index 0000000..edc3b29
--- /dev/null
+++ b/legacy-networking/quick_start.rst
@@ -0,0 +1,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.