aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-11 13:53:44 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-11 13:53:44 +0000
commit648420e67a546b33400fd2fe5b6a50410276ae3d (patch)
treee6dcf892c529d804e104b98d59a249af6aed0d64 /apps
parentde7764b1d4d19619ea042dd297f6e76c6300db7b (diff)
downloadpx4-firmware-648420e67a546b33400fd2fe5b6a50410276ae3d.tar.gz
px4-firmware-648420e67a546b33400fd2fe5b6a50410276ae3d.tar.bz2
px4-firmware-648420e67a546b33400fd2fe5b6a50410276ae3d.zip
Add support for DMA memory allocator to FAT file system
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5127 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps')
-rw-r--r--apps/netutils/webserver/Kconfig10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/netutils/webserver/Kconfig b/apps/netutils/webserver/Kconfig
index fd17a6a97..6afbda4b3 100644
--- a/apps/netutils/webserver/Kconfig
+++ b/apps/netutils/webserver/Kconfig
@@ -72,7 +72,8 @@ config NETUTILS_HTTPD_MMAP
selected, then files can be accessed from the NuttX file system
as well. This selection will map the files into memory (using mmap)
so that the logic is still basically compatible with the classic
- approach.
+ approach. NOTE, however, that since files are copied into memory,
+ this limits solution to small files that will fit into available RAM.
config NETUTILS_HTTPD_MMAP
bool "sendfile()"
@@ -83,10 +84,9 @@ config NETUTILS_HTTPD_MMAP
However, extensions have been contributed. If this option is
selected, then files can be accessed from the NuttX file system
as well. This selection will use the NuttX sendfile() interface
- to send files. NOTE: if this option is selected, then scripting
- must be disabled.
+ to send files. NOTE: If this option is selected, then scripting
+ must be disabled since it depends on the classic, in-memory
+ representation.
endchoice
-
-
endif