Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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.
http://www.rcdrummond.net/fbdump

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 c4d521a86229b3106cf69786008ad94f899da5288a19a067deae84951880722d fbdump-0.4.2.tar.gz

View File

@@ -0,0 +1,21 @@
################################################################################
#
# fbdump
#
################################################################################
FBDUMP_VERSION = 0.4.2
FBDUMP_SITE = http://www.rcdrummond.net/fbdump
FBDUMP_LICENSE = GPLv2
FBDUMP_LICENSE_FILES = COPYING
# The VGA16 specific feature of fbdump doesn't make much sense outside
# of the x86/x86-64 architectures, and causes build problems on some
# architectures as outw() is not always available.
ifeq ($(BR2_i386)$(BR2_x86_64),y)
FBDUMP_CONF_OPTS += --enable-vga16fb
else
FBDUMP_CONF_OPTS += --disable-vga16fb
endif
$(eval $(autotools-package))