diff options
Diffstat (limited to 'recipes-kernel/intel-ethernet/ixgbevf_4.6.1.bb')
| -rw-r--r-- | recipes-kernel/intel-ethernet/ixgbevf_4.6.1.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/recipes-kernel/intel-ethernet/ixgbevf_4.6.1.bb b/recipes-kernel/intel-ethernet/ixgbevf_4.6.1.bb new file mode 100644 index 00000000..f73cc37f --- /dev/null +++ b/recipes-kernel/intel-ethernet/ixgbevf_4.6.1.bb | |||
| @@ -0,0 +1,43 @@ | |||
| 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://sourceforge.net/projects/e1000/" | ||
| 9 | SECTION = "kernel/network" | ||
| 10 | LICENSE = "GPLv2" | ||
| 11 | LIC_FILES_CHKSUM = "file://${WORKDIR}/${BP}/COPYING;md5=a216b4192dc6b777b6f0db560e9a8417" | ||
| 12 | |||
| 13 | SRC_URI = "https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/${PV}/${BP}.tar.gz \ | ||
| 14 | file://0001-ixgbevf-skip-host-depmod.patch \ | ||
| 15 | " | ||
| 16 | |||
| 17 | SRC_URI[md5sum] = "e98bc636fea13cb62c11433159147851" | ||
| 18 | SRC_URI[sha256sum] = "2ca0a0a836d006375fa28a999e0b139bda93110a22ee3742ae1c8d0ac9130a41" | ||
| 19 | |||
| 20 | UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/" | ||
| 21 | UPSTREAM_CHECK_REGEX = "ixgbevf%20stable/(?P<pver>\d+(\.\d+)+)/" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/${BP}/src" | ||
| 24 | MODULES_INSTALL_TARGET = "install" | ||
| 25 | |||
| 26 | EXTRA_OEMAKE='KSRC="${STAGING_KERNEL_BUILDDIR}" KVER="${KERNEL_VERSION}" INSTALL_MOD_PATH="${D}"' | ||
| 27 | |||
| 28 | KERNEL_MODULE_AUTOLOAD_append_intel-core2-32 = " ixgbevf" | ||
| 29 | KERNEL_MODULE_AUTOLOAD_append_intel-corei7-64 = " ixgbevf" | ||
| 30 | |||
| 31 | inherit module | ||
| 32 | |||
| 33 | do_install_append () { | ||
| 34 | # Install scripts/set_irq_affinity | ||
| 35 | install -d ${D}${sysconfdir}/network | ||
| 36 | install -m 0755 ${S}/../scripts/set_irq_affinity ${D}${sysconfdir}/network | ||
| 37 | |||
| 38 | rm -rf ${D}${prefix}/man | ||
| 39 | } | ||
| 40 | |||
| 41 | PACKAGES += "${PN}-script" | ||
| 42 | |||
| 43 | FILES_${PN}-script += "${sysconfdir}/network/set_irq_affinity" | ||
