diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index c970198fce0..e609b5287be 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -295,6 +295,8 @@ below and discussed in the following paragraphs:
<board-name>
|-- include/
+ |-- src/
+ | `-- Makefile
|-- Make.defs
|-- defconfig
`-- setenv.sh
@@ -310,6 +312,17 @@ below and discussed in the following paragraphs:
These header file can only be included by files in arch/<arch-name>/include/
and arch/<arch-name>/src/.
+ src/:
+ This directory contains board specific drivers.
+ This directory will be linked as src/Makefile:
+ This makefile will be invoked to build the board specific drivers.
+ It must support the following targets: libext$(LIBEXT), clean, and distclean.
+ Make.defs: This makefile fragment provides architecture and
tool-specific build options. It will be included by all other