1################################################################################ 2# 3# fbdump 4# 5################################################################################ 6 7FBDUMP_VERSION = 0.4.2 8FBDUMP_SITE = http://www.rcdrummond.net/fbdump 9FBDUMP_LICENSE = GPL-2.0 10FBDUMP_LICENSE_FILES = COPYING 11 12# The VGA16 specific feature of fbdump doesn't make much sense outside 13# of the x86/x86-64 architectures, and causes build problems on some 14# architectures as outw() is not always available. 15ifeq ($(BR2_i386)$(BR2_x86_64),y) 16FBDUMP_CONF_OPTS += --enable-vga16fb 17else 18FBDUMP_CONF_OPTS += --disable-vga16fb 19endif 20 21$(eval $(autotools-package)) 22