mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
644 B
Makefile
22 lines
644 B
Makefile
################################################################################
|
|
#
|
|
# fbdump
|
|
#
|
|
################################################################################
|
|
|
|
FBDUMP_VERSION = 0.4.2
|
|
FBDUMP_SITE = http://www.rcdrummond.net/fbdump
|
|
FBDUMP_LICENSE = GPL-2.0
|
|
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))
|