summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/builtin/.gitignore3
-rw-r--r--apps/builtin/registry/.gitignore3
-rw-r--r--misc/.gitignore2
-rw-r--r--nuttx/.gitignore7
-rw-r--r--nuttx/README.txt25
5 files changed, 37 insertions, 3 deletions
diff --git a/apps/builtin/.gitignore b/apps/builtin/.gitignore
new file mode 100644
index 000000000..3de1c7b32
--- /dev/null
+++ b/apps/builtin/.gitignore
@@ -0,0 +1,3 @@
+builtin_list.h
+builtin_proto.h
+
diff --git a/apps/builtin/registry/.gitignore b/apps/builtin/registry/.gitignore
new file mode 100644
index 000000000..2b3185375
--- /dev/null
+++ b/apps/builtin/registry/.gitignore
@@ -0,0 +1,3 @@
+*.bdat
+*.pdat
+
diff --git a/misc/.gitignore b/misc/.gitignore
new file mode 100644
index 000000000..22726a53a
--- /dev/null
+++ b/misc/.gitignore
@@ -0,0 +1,2 @@
+archives
+
diff --git a/nuttx/.gitignore b/nuttx/.gitignore
new file mode 100644
index 000000000..28e3c900b
--- /dev/null
+++ b/nuttx/.gitignore
@@ -0,0 +1,7 @@
+Make.defs
+setenv.sh
+nuttx
+System.map
+nuttx.bin
+nuttx.hex
+
diff --git a/nuttx/README.txt b/nuttx/README.txt
index efe9a13dd..37b7c8bbd 100644
--- a/nuttx/README.txt
+++ b/nuttx/README.txt
@@ -6,6 +6,7 @@ README
- Download and Unpack
- Semi-Optional apps/ Package
- Installation Directories with Spaces in the Path
+ - Downloading from Repositories
- Notes about Header Files
o Configuring NuttX
- Instantiating "Canned" Configurations
@@ -130,6 +131,17 @@ Installation Directories with Spaces in the Path
Then I install NuttX in /home/nuttx and always build from
/home/nuttx/nuttx-code.
+Downloading from Repositories
+-----------------------------
+
+ NuttX is available in from both GIT and SVN repositories. The GIT
+ repository is the current 'master' and the SVN repository is maintained
+ current so as to not disrupt people are used to using the SVN repository.
+ Feel free to use either. Download instructions are available here:
+
+ https://sourceforge.net/p/nuttx/code
+ https://sourceforge.net/p/nuttx/git
+
Notes about Header Files
------------------------
@@ -199,9 +211,16 @@ Notes about Header Files
stdarg.h
- In most cases, the correct version of stdarg.h is the version provided with your toolchain. However, sometimes there are issues with with using your toolchains stdarg.h. For example, it may attempt to draw in header files that do not exist in NuttX or perhaps the header files that is uses are not compatible with the NuttX header files. In those cases, you can use an architecture-specific stdarg.h header file by defining CONFIG_ARCH_STDARG_H=y.
- See the discussion above for the math.h header. This setting works exactly
- the same for the stdarg.h header file.
+ In most cases, the correct version of stdarg.h is the version provided
+ with your toolchain. However, sometimes there are issues with with
+ using your toolchains stdarg.h. For example, it may attempt to draw in
+ header files that do not exist in NuttX or perhaps the header files that
+ is uses are not compatible with the NuttX header files. In those cases,
+ you can use an architecture-specific stdarg.h header file by defining
+ CONFIG_ARCH_STDARG_H=y.
+
+ See the discussion above for the math.h header. This setting works
+ exactly the same for the stdarg.h header file.
CONFIGURING NUTTX
^^^^^^^^^^^^^^^^^