diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html
index 2d8b4722d7..ea851026df 100644
--- a/Documentation/NuttShell.html
+++ b/Documentation/NuttShell.html
@@ -1321,7 +1321,7 @@ mkfatfs <path>
Format a fat file system on the block device specified by <path>
.
NSH provides this command to access the mkfatfs()
NuttX API.
This block device must reside in the NuttX pseudo filesystem and
- must have been created by some call to register_blockdriver()
(see include/nuttx/fs.h
).
+ must have been created by some call to register_blockdriver()
(see include/nuttx/fs/fs.h
).
diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html
index e920258620..8550d98fcc 100644
--- a/Documentation/NuttxPortingGuide.html
+++ b/Documentation/NuttxPortingGuide.html
@@ -2307,7 +2307,7 @@ extern void up_ledoff(int led);
-
- include/nuttx/fs.h
.
+ include/nuttx/fs/fs.h
.
All structures and APIs needed to work with character drivers are provided in this header file.
@@ -2359,7 +2359,7 @@ extern void up_ledoff(int led);
- is provided via a sinble ioctl
method (see include/nuttx/ioctl.h
):
+ is provided via a sinble ioctl
method (see include/nuttx/fs/ioctl.h
):
int (*ioctl)(FAR struct mtd_dev_s *dev, int cmd, unsigned long arg);
@@ -3827,12 +3827,12 @@ build
-
CONFIG_NUTTX_KERNEL
:
- With most MCUs, NuttX is built as a flat, single executable image
+ With most MCUs, NuttX is built as a flat, single executable image
containing the NuttX RTOS along with all application code.
The RTOS code and the application run in the same address space and at the same kernel-mode privileges.
- If this option is selected, NuttX will be built separately as a monolithic, kernel-mode module and the applications
+ If this option is selected, NuttX will be built separately as a monolithic, kernel-mode module and the applications
can be added as a separately built, user-mode module.
- In this a system call layer will be built to support the user- to kernel-mode interface to the RTOS.
+ In this a system call layer will be built to support the user- to kernel-mode interface to the RTOS.
-
CONFIG_MM_REGIONS
: If the architecture includes multiple
diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html
index 614570aa92..262f237a95 100644
--- a/Documentation/NuttxUserGuide.html
+++ b/Documentation/NuttxUserGuide.html
@@ -6623,7 +6623,7 @@ void *memmove(void *dest, const void *src, size_t count);
Function Prototype:
-#include <nuttx/mkfatfs.h>
+#include <nuttx/fs/mkfatfs.h>
int mkfatfs(FAR const char *pathname, FAR struct fat_format_s *fmt);