9
0
Fork 0
barebox/lib/Kconfig

78 lines
918 B
Plaintext
Raw Normal View History

menu "Library routines "
config PARAMETER
bool
config UNCOMPRESS
bool
select FILETYPE
2007-07-05 16:02:13 +00:00
config ZLIB
bool "include gzip uncompression support"
select UNCOMPRESS
2007-07-05 16:02:13 +00:00
config BZLIB
bool "include bzip2 uncompression support"
select UNCOMPRESS
2007-07-05 16:02:13 +00:00
config GENERIC_FIND_NEXT_BIT
def_bool n
config PROCESS_ESCAPE_SEQUENCE
def_bool n
source lib/lzo/Kconfig
config FDT
bool
config OFTREE
select FDT
bool
config BCH
bool
config BITREV
bool
config QSORT
bool
config IMAGE_RENDERER
bool
depends on VIDEO
select FILETYPE
if IMAGE_RENDERER
config BMP
bool "bmp"
config PNG
bool "png"
select ZLIB
if PNG
choice
prompt "PNG Lib"
config LODEPNG
bool "lodePNG"
help
This PNG library supports most PNG formats.
config PICOPNG
bool "picoPNG"
help
This PNG library only supports RGBA PNG8 but is much smaller
in binary size than lodepng.
endchoice
endif
endif
endmenu