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>
19 lines
619 B
Makefile
19 lines
619 B
Makefile
################################################################################
|
|
#
|
|
# memtest86
|
|
#
|
|
################################################################################
|
|
|
|
MEMTEST86_VERSION = 5.01
|
|
MEMTEST86_SOURCE = memtest86+-$(MEMTEST86_VERSION).tar.gz
|
|
MEMTEST86_SITE = http://www.memtest.org/download/$(MEMTEST86_VERSION)
|
|
MEMTEST86_LICENSE = GPL-2.0
|
|
MEMTEST86_LICENSE_FILES = README
|
|
|
|
# memtest86+ is sensitive to toolchain changes, use the shipped binary version
|
|
define MEMTEST86_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/precomp.bin $(TARGET_DIR)/boot/memtest86+.bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|