nuttx-apps/system/lzf/Kconfig
anchao 220653f21c Squashed commit of the following:
Author: anchao <anchao@pinecone.net>

     apps/, most main() function: Correct CONFIG_BUILD_LOADABLE usage
     Loadable apps/: Correct loadable symbol table generate
     apps/system/ubloxmodem:  Fix build break
     apps/examples/ostest: start restart/waitpid/user test from main loop
     apps/nshlib:  Expand reboot and poweroff commands to include a second, optional mode argument

    Author: Gregory Nutt <gnutt@nuttx.org>

     An attempt to fix build issues.  Does not work.
     apps/examples/ostest:  Fix some inappropriate renaming of static functions introduced with recent patches.
     apps/builtin/exec_builtin.c:  Fix a error introduced by recent comments.  Found in build testing.

    Author: anchao <anchao@pinecone.net>

     apps/builtin/exec_builtin.c:  Try posix_spawn if builtin apps do not have have an entry point.
     apps/Application.mk: introduce MODULE config to simplify tristate(m)
     apps/nsh:  Change the nuttx shell module type to tristate
     apps:  Add loadable application support
     script/mksymtab:  Generate symbol table name by default
     apps/builtin:  Allow loadable applications can register with apps/builtin.
2018-08-23 11:06:15 -06:00

49 lines
1.2 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_LZF
bool "LZF compression tool"
default n
depends on LIBC_LZF
---help---
Enable theLZF compression tool
if SYSTEM_LZF
config SYSTEM_LZF_BLOG
int "Log2 of block size"
default 10
range 9 12
---help---
This example uses two buffers of size a little more than
(1 << CONFIG_SYSTEM_LZF_BLOG) to compress and decompress data in
chunks. Slightly better compression should be obtainable with larger
chunks.
NOTE: This is a static memory allocation and will take add a little
more than 2 * (1 << CONFIG_SYSTEM_LZF_BLOG) bytes to the size of the
.bss section used by the program.
NOTE: This represents a maximum blocksize. The use may select a
smaller blocksize using the 'lzf -b' option.
config SYSTEM_LZF_PROGNAME
string "Program name"
default "lzf"
depends on BUILD_LOADABLE
---help---
This is the name of the program that will be use when the NSH ELF
program is installed.
config SYSTEM_LZF_PRIORITY
int "LZF tool task priority"
default 100
config SYSTEM_LZF_STACKSIZE
int "LZF tool stack size"
default 2048
endif