summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-12-10 09:42:58 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-12-10 09:42:58 -0600
commitc89f9dcebca9bded25a85d13c436219c7411e973 (patch)
treebb38b317494fa6721ad4dc7e5ba55e2a2a58169f /apps/examples
parent25c295c69751b8a65c692af565abe4cccfc281c4 (diff)
downloadnuttx-c89f9dcebca9bded25a85d13c436219c7411e973.tar.gz
nuttx-c89f9dcebca9bded25a85d13c436219c7411e973.tar.bz2
nuttx-c89f9dcebca9bded25a85d13c436219c7411e973.zip
Move ramdisk.h to include/nutt/fs/ramdisk.h
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/elf/elf_main.c2
-rw-r--r--apps/examples/mount/ramdisk.c2
-rw-r--r--apps/examples/nxflat/nxflat_main.c2
-rw-r--r--apps/examples/posix_spawn/Makefile2
-rw-r--r--apps/examples/posix_spawn/spawn_main.c2
-rw-r--r--apps/examples/romfs/romfs_main.c2
-rw-r--r--apps/examples/thttpd/thttpd_main.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/apps/examples/elf/elf_main.c b/apps/examples/elf/elf_main.c
index 2b5c0eb5e..ce43c241f 100644
--- a/apps/examples/elf/elf_main.c
+++ b/apps/examples/elf/elf_main.c
@@ -50,7 +50,7 @@
#include <debug.h>
#include <errno.h>
-#include <nuttx/ramdisk.h>
+#include <nuttx/fs/ramdisk.h>
#include <nuttx/binfmt/binfmt.h>
#include <nuttx/binfmt/elf.h>
#include <nuttx/binfmt/symtab.h>
diff --git a/apps/examples/mount/ramdisk.c b/apps/examples/mount/ramdisk.c
index 83ef74e42..2b9ffd79e 100644
--- a/apps/examples/mount/ramdisk.c
+++ b/apps/examples/mount/ramdisk.c
@@ -45,7 +45,7 @@
#include <string.h>
#include <errno.h>
-#include <nuttx/ramdisk.h>
+#include <nuttx/fs/ramdisk.h>
#include <nuttx/fs/mkfatfs.h>
#include "mount.h"
diff --git a/apps/examples/nxflat/nxflat_main.c b/apps/examples/nxflat/nxflat_main.c
index 0c4846a5c..e3b06addb 100644
--- a/apps/examples/nxflat/nxflat_main.c
+++ b/apps/examples/nxflat/nxflat_main.c
@@ -49,7 +49,7 @@
#include <debug.h>
#include <errno.h>
-#include <nuttx/ramdisk.h>
+#include <nuttx/fs/ramdisk.h>
#include <nuttx/binfmt/binfmt.h>
#include <nuttx/binfmt/nxflat.h>
diff --git a/apps/examples/posix_spawn/Makefile b/apps/examples/posix_spawn/Makefile
index 0bfa36e55..77b6383ed 100644
--- a/apps/examples/posix_spawn/Makefile
+++ b/apps/examples/posix_spawn/Makefile
@@ -120,7 +120,7 @@ spawn_main.o: spawn_main.c \
$(TOPDIR)/include/spawn.h \
$(TOPDIR)/include/debug.h \
$(TOPDIR)/include/errno.h \
- $(TOPDIR)/include/nuttx/ramdisk.h \
+ $(TOPDIR)/include/nuttx/fs/ramdisk.h \
$(TOPDIR)/include/nuttx/binfmt/elf.h \
$(TOPDIR)/include/nuttx/binfmt/symtab.h \
filesystem/romfs.h
diff --git a/apps/examples/posix_spawn/spawn_main.c b/apps/examples/posix_spawn/spawn_main.c
index 0ca5f9107..7a39a24b0 100644
--- a/apps/examples/posix_spawn/spawn_main.c
+++ b/apps/examples/posix_spawn/spawn_main.c
@@ -51,7 +51,7 @@
#include <debug.h>
#include <errno.h>
-#include <nuttx/ramdisk.h>
+#include <nuttx/fs/ramdisk.h>
#include <nuttx/binfmt/elf.h>
#include <nuttx/binfmt/symtab.h>
diff --git a/apps/examples/romfs/romfs_main.c b/apps/examples/romfs/romfs_main.c
index 3437cb8ac..d39c8ec2b 100644
--- a/apps/examples/romfs/romfs_main.c
+++ b/apps/examples/romfs/romfs_main.c
@@ -69,7 +69,7 @@
#include <dirent.h>
#include <errno.h>
-#include <nuttx/ramdisk.h>
+#include <nuttx/fs/ramdisk.h>
#include "romfs_testdir.h"
diff --git a/apps/examples/thttpd/thttpd_main.c b/apps/examples/thttpd/thttpd_main.c
index 9d08824e6..71fc8de6a 100644
--- a/apps/examples/thttpd/thttpd_main.c
+++ b/apps/examples/thttpd/thttpd_main.c
@@ -55,7 +55,7 @@
#include <apps/netutils/uiplib.h>
#include <apps/netutils/thttpd.h>
-#include <nuttx/ramdisk.h>
+#include <nuttx/fs/ramdisk.h>
#include <nuttx/binfmt/binfmt.h>
#include <nuttx/binfmt/nxflat.h>
#ifdef CONFIG_NET_SLIP