Skip to content
Snippets Groups Projects
Commit 44fe9459 authored by patacongo's avatar patacongo
Browse files

Add support for DMA memory allocator to FAT file system

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5127 42af7a65-404d-4744-a932-0658087f49c3
parent c87dcca6
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment