27 lines
546 B
Plaintext
27 lines
546 B
Plaintext
config BR2_PACKAGE_FBV
|
|
bool "fbv"
|
|
help
|
|
fbv is a very simple graphic file viewer for the framebuffer
|
|
console, capable of displaying JPEG, PNG and BMP files
|
|
using libjpeg and libpng.
|
|
|
|
https://github.com/amadvance/fbv
|
|
|
|
if BR2_PACKAGE_FBV
|
|
|
|
config BR2_PACKAGE_FBV_PNG
|
|
bool "PNG support"
|
|
default y
|
|
select BR2_PACKAGE_LIBPNG
|
|
help
|
|
Enable support for PNG using libpng.
|
|
|
|
config BR2_PACKAGE_FBV_JPEG
|
|
bool "JPEG support"
|
|
default y
|
|
select BR2_PACKAGE_JPEG
|
|
help
|
|
Enable support for JPEG using IJG's libjpeg.
|
|
|
|
endif # BR2_PACKAGE_FBV
|