1config BR2_PACKAGE_FBV 2 bool "fbv" 3 help 4 fbv is a very simple graphic file viewer for the framebuffer 5 console, capable of displaying GIF, JPEG, PNG and BMP files 6 using libungif, libjpeg and libpng. 7 8 http://freshmeat.net/projects/fbv/ 9 10if BR2_PACKAGE_FBV 11 12config BR2_PACKAGE_FBV_PNG 13 bool "PNG support" 14 default y 15 select BR2_PACKAGE_LIBPNG 16 help 17 Enable support for PNG using libpng. 18 19config BR2_PACKAGE_FBV_JPEG 20 bool "JPEG support" 21 default y 22 select BR2_PACKAGE_JPEG 23 help 24 Enable support for JPEG using IJG's libjpeg. 25 26config BR2_PACKAGE_FBV_GIF 27 bool "GIF support" 28 default y 29 select BR2_PACKAGE_GIFLIB 30 help 31 Enable support for GIF using giflib. 32 33endif # BR2_PACKAGE_FBV 34