summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2021-03-02 14:10:06 -0700
committerKinsey Moore <kinsey.moore@oarcorp.com>2022-09-06 13:46:39 -0500
commit8a9b628ef287addccf24d524af19edc7b3f2a69e (patch)
tree933e3fba3b87d1159af2e996da56de14c93c2946 /README
downloadrtems-net-services-8a9b628ef287addccf24d524af19edc7b3f2a69e.tar.bz2
Initial Commit
This adds the rtems-waf submodule, minimal build infrastructure, and testsuite support files.
Diffstat (limited to 'README')
-rw-r--r--README32
1 files changed, 32 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..057abd1
--- /dev/null
+++ b/README
@@ -0,0 +1,32 @@
+Overview
+--------
+
+The rtems-net-services repository serves as a central location to manage
+libraries and tests that require network support, but can otherwise be shared
+across multiple network stacks.
+
+File Origins
+------------
+
+The sources presented here originate in one of several locations described by
+the ORIGIN.* files and whose license is described by the COPYING.* files.
+Commits adding such files should include the hash of the target repository if
+applicable.
+
+Installation Instructions
+-------------------------
+1. Populate the git submodules:
+
+```
+git submodule init
+git submodule update
+```
+2. Configure and build
+```
+./waf configure --prefix=INSTALL_PREFIX
+./waf
+./waf install
+```
+
+More `waf` arguments can be found by using:
+`./waf --help`