c5d4c907af
This package is really annoying since the archive name doesn't contain the version (iqvlinux.tar.gz), so we have added an iqvlinux-1.2.0.3.tar.gz tarball on sources.buildroot.net. The package will try to download iqvlinux-1.2.0.3.tar.gz from the upstream sourceforge location, which will fail, and then fallback to the backup mirror, where it will successfully find iqvlinux-1.2.0.3.tar.gz. Also add hashes for license files. Signed-off-by: Carlos Santos <casantos@datacom.ind.br> [Thomas: don't add custom logic for download, use iqvlinux-1.2.0.3.tar.gz, which is hosted on sources.buildroot.net.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
889 B
Makefile
26 lines
889 B
Makefile
################################################################################
|
|
#
|
|
# iqvlinux
|
|
#
|
|
################################################################################
|
|
|
|
# The upstream tarball is just named iqvlinux.tar.gz, which we cannot
|
|
# use because it doesn't contain a version number. Therefore, the
|
|
# download from the upstream site will fail, and fallback to the
|
|
# backup mirror, where we have added an iqvlinux-1.2.0.3.tar.gz
|
|
# tarball.
|
|
IQVLINUX_VERSION = 1.2.0.3
|
|
IQVLINUX_SITE = https://downloads.sourceforge.net/project/e1000/iqvlinux/$(IQVLINUX_VERSION)
|
|
|
|
IQVLINUX_LICENSE = GPL-2.0, BSD-3-Clause
|
|
IQVLINUX_LICENSE_FILES = \
|
|
COPYING src/linux/driver/files.txt \
|
|
inc/linux/files.txt inc/files.txt
|
|
|
|
IQVLINUX_MODULE_MAKE_OPTS = NALDIR=$(@D) KSRC=$(LINUX_DIR) CC=$(TARGET_CC)
|
|
|
|
IQVLINUX_MODULE_SUBDIRS = src/linux/driver
|
|
|
|
$(eval $(kernel-module))
|
|
$(eval $(generic-package))
|