summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/mount/ramdisk.c2
-rw-r--r--apps/examples/nxffs/nxffs_main.c2
-rw-r--r--apps/examples/pashello/device.c6
-rw-r--r--apps/namedapp/binfs.c8
-rw-r--r--apps/netutils/telnetd/telnetd_driver.c2
-rw-r--r--apps/nshlib/README.txt2
-rw-r--r--apps/nshlib/nsh_ddcmd.c2
-rw-r--r--apps/nshlib/nsh_fscmds.c2
8 files changed, 13 insertions, 13 deletions
diff --git a/apps/examples/mount/ramdisk.c b/apps/examples/mount/ramdisk.c
index f596dae52..9688580c0 100644
--- a/apps/examples/mount/ramdisk.c
+++ b/apps/examples/mount/ramdisk.c
@@ -46,7 +46,7 @@
#include <errno.h>
#include <nuttx/ramdisk.h>
-#include <nuttx/mkfatfs.h>
+#include <nuttx/fs/mkfatfs.h>
#include "mount.h"
diff --git a/apps/examples/nxffs/nxffs_main.c b/apps/examples/nxffs/nxffs_main.c
index 863f8bb43..bc28cfa73 100644
--- a/apps/examples/nxffs/nxffs_main.c
+++ b/apps/examples/nxffs/nxffs_main.c
@@ -53,7 +53,7 @@
#include <debug.h>
#include <nuttx/mtd.h>
-#include <nuttx/nxffs.h>
+#include <nuttx/fs/nxffs.h>
/****************************************************************************
* Definitions
diff --git a/apps/examples/pashello/device.c b/apps/examples/pashello/device.c
index 5f0038ad7..a3950e6a3 100644
--- a/apps/examples/pashello/device.c
+++ b/apps/examples/pashello/device.c
@@ -1,8 +1,8 @@
/****************************************************************************
* examples/pashello/device.c
*
- * Copyright (C) 2008 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2008, 2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,7 @@
#include <sys/types.h>
#include <string.h>
#include <errno.h>
-#include <nuttx/fs.h>
+#include <nuttx/fs/fs.h>
#include "hello.h"
#include "pashello.h"
diff --git a/apps/namedapp/binfs.c b/apps/namedapp/binfs.c
index 106c1444c..36e3ace92 100644
--- a/apps/namedapp/binfs.c
+++ b/apps/namedapp/binfs.c
@@ -1,8 +1,8 @@
/****************************************************************************
* apps/namedapps/binfs.c
*
- * Copyright (C) 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -52,8 +52,8 @@
#include <errno.h>
#include <debug.h>
-#include <nuttx/fs.h>
-#include <nuttx/dirent.h>
+#include <nuttx/fs/fs.h>
+#include <nuttx/fs/dirent.h>
#include "namedapp.h"
diff --git a/apps/netutils/telnetd/telnetd_driver.c b/apps/netutils/telnetd/telnetd_driver.c
index 2efaba1be..1183a2f70 100644
--- a/apps/netutils/telnetd/telnetd_driver.c
+++ b/apps/netutils/telnetd/telnetd_driver.c
@@ -56,7 +56,7 @@
#include <string.h>
#include <poll.h>
#include <errno.h>
-#include <nuttx/fs.h>
+#include <nuttx/fs/fs.h>
#include <debug.h>
#include <nuttx/net/net.h>
diff --git a/apps/nshlib/README.txt b/apps/nshlib/README.txt
index 5c29d75bb..ee47767a9 100644
--- a/apps/nshlib/README.txt
+++ b/apps/nshlib/README.txt
@@ -485,7 +485,7 @@ o mkfatfs <path>
NSH provides this command to access the mkfatfs() NuttX API.
This block device must reside in the NuttX psuedo filesystem and
must have been created by some call to register_blockdriver() (see
- include/nuttx/fs.h).
+ include/nuttx/fs/fs.h).
o mkfifo <path>
diff --git a/apps/nshlib/nsh_ddcmd.c b/apps/nshlib/nsh_ddcmd.c
index 5b03cbd2f..40a3710b1 100644
--- a/apps/nshlib/nsh_ddcmd.c
+++ b/apps/nshlib/nsh_ddcmd.c
@@ -51,7 +51,7 @@
#include <debug.h>
#include <errno.h>
-#include <nuttx/fs.h>
+#include <nuttx/fs/fs.h>
#include "nsh.h"
#include "nsh_console.h"
diff --git a/apps/nshlib/nsh_fscmds.c b/apps/nshlib/nsh_fscmds.c
index 764caca6d..56a52737a 100644
--- a/apps/nshlib/nsh_fscmds.c
+++ b/apps/nshlib/nsh_fscmds.c
@@ -52,7 +52,7 @@
# include <nuttx/ramdisk.h>
# endif
# ifdef CONFIG_FS_FAT
-# include <nuttx/mkfatfs.h>
+# include <nuttx/fs/mkfatfs.h>
# endif
#endif
#endif