diff options
| author | Yogesh Tyagi <yogesh.tyagi@intel.com> | 2026-02-09 17:00:32 +0530 |
|---|---|---|
| committer | Yogesh Tyagi <yogesh.tyagi@intel.com> | 2026-02-10 22:35:40 +0530 |
| commit | 5fb3ccd1d5cca9dde13c90f290d3c367a851801c (patch) | |
| tree | c54dcf5dbe6ff10cd1447db09db22f1daea701ef /recipes-kernel/intel-ethernet/ixgbevf_5.2.2.bb | |
| parent | d9a21c980dd9dbd1e24f5f348ccaad6690f7c2cd (diff) | |
| download | meta-intel-5fb3ccd1d5cca9dde13c90f290d3c367a851801c.tar.gz | |
ixgbevf: upgrade 4.19.10 -> 5.2.2
Updated source URL from Sourceforge to GitHub as Intel ethernet driver
project has migrated to github.com/intel/ethernet-linux-ixgbevf.
Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
Diffstat (limited to 'recipes-kernel/intel-ethernet/ixgbevf_5.2.2.bb')
| -rw-r--r-- | recipes-kernel/intel-ethernet/ixgbevf_5.2.2.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/recipes-kernel/intel-ethernet/ixgbevf_5.2.2.bb b/recipes-kernel/intel-ethernet/ixgbevf_5.2.2.bb new file mode 100644 index 00000000..10b29676 --- /dev/null +++ b/recipes-kernel/intel-ethernet/ixgbevf_5.2.2.bb | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | SUMMARY = "ixgbevf kernel driver for Intel Magnolia Park 10GbE" | ||
| 2 | DESCRIPTION = "This virtual function driver supports kernel versions 2.6.x and newer \ | ||
| 3 | This driver supports 82599, X540, X550, and X552-based virtual function devices \ | ||
| 4 | that can only be activated on kernels that support SR-IOV. \ | ||
| 5 | SR-IOV requires the correct platform and OS support. \ | ||
| 6 | The guest OS loading this driver must support MSI-X interrupts." | ||
| 7 | |||
| 8 | HOMEPAGE = "https://github.com/intel/ethernet-linux-ixgbevf" | ||
| 9 | SECTION = "kernel/network" | ||
| 10 | LICENSE = "GPL-2.0-only" | ||
| 11 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/${BP}/COPYING;md5=a216b4192dc6b777b6f0db560e9a8417" | ||
| 12 | |||
| 13 | SRC_URI = "https://github.com/intel/ethernet-linux-ixgbevf/releases/download/v${PV}/${BP}.tar.gz \ | ||
| 14 | " | ||
| 15 | |||
| 16 | SRC_URI[sha256sum] = "8e0950ccfc19515f4fcb0dd347f776ed49aa6781ee3a177511d0fb7ac4d25e9a" | ||
| 17 | |||
| 18 | UPSTREAM_CHECK_URI = "https://github.com/intel/ethernet-linux-ixgbevf/releases" | ||
| 19 | UPSTREAM_CHECK_REGEX = "ixgbevf-(?P<pver>\d+(\.\d+)+)\.tar\.gz" | ||
| 20 | |||
| 21 | CVE_PRODUCT = "linux:linux_kernel_ixgbe" | ||
| 22 | |||
| 23 | S = "${UNPACKDIR}/${BP}/src" | ||
| 24 | |||
| 25 | EXTRA_OEMAKE = 'KSRC="${STAGING_KERNEL_DIR}" KOBJ="${STAGING_KERNEL_BUILDDIR}" KVER="${KERNEL_VERSION}" INSTALL_MOD_PATH="${D}"' | ||
| 26 | |||
| 27 | KERNEL_MODULE_AUTOLOAD:append:intel-core2-32 = " ixgbevf" | ||
| 28 | KERNEL_MODULE_AUTOLOAD:append:intel-corei7-64 = " ixgbevf" | ||
| 29 | |||
| 30 | inherit module | ||
| 31 | |||
| 32 | do_install:append () { | ||
| 33 | # Install scripts/set_irq_affinity | ||
| 34 | install -d ${D}${sysconfdir}/network | ||
| 35 | install -m 0755 ${S}/../scripts/set_irq_affinity ${D}${sysconfdir}/network | ||
| 36 | |||
| 37 | rm -rf ${D}${prefix}/man | ||
| 38 | } | ||
| 39 | |||
| 40 | PACKAGES += "${PN}-script" | ||
| 41 | |||
| 42 | FILES:${PN}-script += "${sysconfdir}/network/set_irq_affinity" | ||
| 43 | |||
| 44 | CVE_STATUS[CVE-2015-1142857] = "fixed-version: Fixed from version 4.4-rc1" | ||
| 45 | |||
| 46 | EXCLUDE_FROM_WORLD = "1" | ||
