]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
iqvlinux: remove package
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Wed, 4 Apr 2018 16:00:09 +0000 (18:00 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Fri, 6 Apr 2018 19:38:27 +0000 (21:38 +0200)
This package contains a kernel module from Intel, which could only be
used together with Intel userspace tools provided under NDA, which
also come with the same kernel module. The copy of the kernel module
available on SourceForge is only provided to comply with the GPLv2
requirement. Intel engineers were even surprised it even built and
were not willing to make any effort to fix their tarball naming to
contain a version number. Therefore, it does not make sense for
Buildroot to provide such a package.

See https://sourceforge.net/p/e1000/bugs/589/ for the discussion.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Acked-by: Carlos Santos <casantos@datacom.ind.br>
Acked-by: Romain Naour <romain.naour@gmail.com>
[Thomas:
 - remove double "only" noticed by Carlos
 - fix typo packaged -> package noticed by Romain
 - fix check-package warning noticed by Ricardo]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Config.in.legacy
DEVELOPERS
package/Config.in
package/iqvlinux/0001-Support-Linux-kernel-4.12-and-later.patch [deleted file]
package/iqvlinux/Config.in [deleted file]
package/iqvlinux/iqvlinux.hash [deleted file]
package/iqvlinux/iqvlinux.mk [deleted file]

index 2e3b1b600141e4dd9504f1d583df6d70944ba606..22e23433ea89b40a16d219a0745a337e776104f0 100644 (file)
@@ -145,6 +145,23 @@ endif
 ###############################################################################
 comment "Legacy options removed in 2018.05"
 
+config BR2_PACKAGE_IQVLINUX
+       bool "iqvlinux package removed"
+       select BR2_LEGACY
+       help
+         This package contained a kernel module from Intel, which
+         could only be used together with Intel userspace tools
+         provided under NDA, which also come with the same kernel
+         module. The copy of the kernel module available on
+         SourceForge is provided only to comply with the GPLv2
+         requirement. Intel engineers were even surprised it even
+         built and were not willing to make any effort to fix their
+         tarball naming to contain a version number. Therefore, it
+         does not make sense for Buildroot to provide such a package.
+
+         See https://sourceforge.net/p/e1000/bugs/589/ for the
+         discussion.
+
 config BR2_PACKAGE_KODI_ADSP_BASIC
        bool "kodi-adsp-basic package removed"
        select BR2_LEGACY
index 9d23fa51b876723f8a0580ac9fb9d46f4cb9a79a..53abcf82d66be7987a880133c96fe1d127c5d4b9 100644 (file)
@@ -1583,7 +1583,6 @@ F:        package/bullet/
 F:     package/efl/
 F:     package/enlightenment/
 F:     package/expedite/
-F:     package/iqvlinux/
 F:     package/irrlicht/
 F:     package/liblinear/
 F:     package/lensfun/
index 53d7cb2cfa1abcc8b32ddc281cf22ec8c5727e06..5e798a4f14a65f4bb730b1e6e5fb6f973f5347d7 100644 (file)
@@ -437,7 +437,6 @@ endmenu
        source "package/iostat/Config.in"
        source "package/ipmitool/Config.in"
        source "package/ipmiutil/Config.in"
-       source "package/iqvlinux/Config.in"
        source "package/irda-utils/Config.in"
        source "package/iucode-tool/Config.in"
        source "package/kbd/Config.in"
diff --git a/package/iqvlinux/0001-Support-Linux-kernel-4.12-and-later.patch b/package/iqvlinux/0001-Support-Linux-kernel-4.12-and-later.patch
deleted file mode 100644 (file)
index 22ee03c..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-From 517d70780b903caa41ee93adbbb9bb985da23a29 Mon Sep 17 00:00:00 2001
-From: Carlos Santos <casantos@datacom.ind.br>
-Date: Tue, 12 Dec 2017 13:40:44 -0200
-Subject: [PATCH] Support Linux kernel 4.12 and later
-
-Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
----
- src/linux/driver/linuxdrivermemory_i.c | 5 +++++
- src/linux/driver/linuxdriveros_i.c     | 5 +++++
- src/linux/driver/linuxnaldriver.c      | 5 +++++
- 3 files changed, 15 insertions(+)
-
-diff --git a/src/linux/driver/linuxdrivermemory_i.c b/src/linux/driver/linuxdrivermemory_i.c
-index bdf1d42..53366d7 100644
---- a/src/linux/driver/linuxdrivermemory_i.c
-+++ b/src/linux/driver/linuxdrivermemory_i.c
-@@ -49,7 +49,12 @@
- #include <linux/errno.h>
- #include <linux/fs.h>
- #include <linux/mm.h>
-+#include <linux/version.h>
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
-+#include <linux/uaccess.h>
-+#else
- #include <asm/uaccess.h>
-+#endif
- #include <linux/pci.h>
- #include <linux/delay.h>
-diff --git a/src/linux/driver/linuxdriveros_i.c b/src/linux/driver/linuxdriveros_i.c
-index 653bec9..43df25e 100644
---- a/src/linux/driver/linuxdriveros_i.c
-+++ b/src/linux/driver/linuxdriveros_i.c
-@@ -49,7 +49,12 @@
- #include <linux/errno.h>
- #include <linux/fs.h>
- #include <linux/mm.h>
-+#include <linux/version.h>
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
-+#include <linux/uaccess.h>
-+#else
- #include <asm/uaccess.h>
-+#endif
- #include <linux/pci.h>
- #include <linux/delay.h>
-diff --git a/src/linux/driver/linuxnaldriver.c b/src/linux/driver/linuxnaldriver.c
-index 93c2f80..c1ddbcf 100644
---- a/src/linux/driver/linuxnaldriver.c
-+++ b/src/linux/driver/linuxnaldriver.c
-@@ -39,7 +39,12 @@
- #include <linux/fs.h>
- #include <linux/mm.h>
- #include <linux/version.h>
-+#include <linux/version.h>
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
-+#include <linux/uaccess.h>
-+#else
- #include <asm/uaccess.h>
-+#endif
- #include "naltypes.h"
- #include "nalioctl.h"
- #include "linuxnaldriver.h"
--- 
-2.14.3
-
diff --git a/package/iqvlinux/Config.in b/package/iqvlinux/Config.in
deleted file mode 100644 (file)
index 73804ac..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-config BR2_PACKAGE_IQVLINUX
-       bool "iqvlinux"
-       depends on BR2_LINUX_KERNEL
-       help
-         Intel Ethernet Adapter Debug Driver for Linux (iqvlinux).
-
-         Officially supports kernel versions 2.6.x up through 4.0.x but
-         the Buildroot package contains a patch to allow it to be built
-         on newer kernel versions.
-
-         This debug driver supports all Intel's networking Tools based
-         on the SDK version 2.19.36.0 or higher which support Intel
-         Ethernet chip including e1000, e1000e, i210...
-
-         Note: This driver requires PCI support to be enabled
-         (i.e. CONFIG_PCI).
-
-         https://sourceforge.net/projects/e1000/files/iqvlinux/
-
-comment "iqvlinux needs a Linux kernel to be built"
-       depends on !BR2_LINUX_KERNEL
diff --git a/package/iqvlinux/iqvlinux.hash b/package/iqvlinux/iqvlinux.hash
deleted file mode 100644 (file)
index 20d612d..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-# locally computed
-sha256 4020a661940ba6d50f24654b90a41280eb8eccf00061fe6d105c654d3d97d551  iqvlinux-1.2.0.3.tar.gz
-sha256 386086e232db4708770f717595d4f83188f776aa6e7313cd12fb039e869f494b  COPYING
-sha256 beded926a8f18aad5d911daf581759e2b25697588034d2b29033ae1a929506ff  src/linux/driver/files.txt
-sha256 ecf93b9b739fc82f7b87b34f8c6411dfdd271234af2fe45212293d9df2b654b3  inc/linux/files.txt
-sha256 0a309350c1b32be72479e8fe08f7f6bbbad2e8c3d9a1cbcad3d482ea48a236ad  inc/files.txt
diff --git a/package/iqvlinux/iqvlinux.mk b/package/iqvlinux/iqvlinux.mk
deleted file mode 100644 (file)
index d6d445e..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-################################################################################
-#
-# 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))