Commit f10aecd1 authored by Daniel Laird's avatar Daniel Laird
Browse files

fbdump: Add new package fbdump.

fbdump is a simple tool to capture snapshots from the Linux kernel framebuffer 
device and write them out as a PPM file. Currently, most packed-pixel framebuffer
formats and the vga16 framebuffer are supported.
parent dc8423d9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -323,6 +323,7 @@ source "package/dialog/Config.in"

comment "graphic libraries"
source "package/directfb/Config.in"
source "package/fbdump/Config.in"
source "package/fusion/Config.in"
source "package/imagemagick/Config.in"
source "package/jpeg/Config.in"
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_FBDUMP
	bool "fbdump (Framebuffer Capture Tool)"
	help
	   fbdump is a simple tool to capture snapshots from the Linux kernel framebuffer
	   device and write them out as a PPM file. Currently, most packed-pixel framebuffer
       formats and the vga16 framebuffer are supported.
+16 −0
Original line number Diff line number Diff line
#############################################################
#
# fbdump
#
#############################################################
FBDUMP_VERSION:=0.4.2
FBDUMP_SOURCE:=fbdump-$(FBDUMP_VERSION).tar.gz
FBDUMP_SITE:=http://www.rcdrummond.net/fbdump
FBDUMP_AUTORECONF = NO
FBDUMP_CONF_ENV = ac_cv_func_malloc_0_nonnull=yes
FBDUMP_INSTALL_STAGING = YES
FBDUMP_INSTALL_TARGET = YES
FBDUMP_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-strip

$(eval $(call AUTOTARGETS,package,fbdump))