mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-01 13:58:05 +00:00
Use the convert-overrides.py to convert to new syntax and manually fix some additional changes. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
46 lines
1.6 KiB
BlitzBasic
46 lines
1.6 KiB
BlitzBasic
SUMMARY="ixgbevf kernel driver for Intel Magnolia Park 10GbE"
|
|
DESCRIPTION="This virtual function driver supports kernel versions 2.6.x and newer \
|
|
This driver supports 82599, X540, X550, and X552-based virtual function devices \
|
|
that can only be activated on kernels that support SR-IOV. \
|
|
SR-IOV requires the correct platform and OS support. \
|
|
The guest OS loading this driver must support MSI-X interrupts."
|
|
|
|
HOMEPAGE = "https://sourceforge.net/projects/e1000/"
|
|
SECTION = "kernel/network"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/${BP}/COPYING;md5=a216b4192dc6b777b6f0db560e9a8417"
|
|
|
|
SRC_URI = "https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/${PV}/${BP}.tar.gz \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "0031d09a54af9ecf1216c185e4641e38527643afa09e78d1bd95752e49fe8985"
|
|
|
|
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/"
|
|
UPSTREAM_CHECK_REGEX = "ixgbevf%20stable/(?P<pver>\d+(\.\d+)+)/"
|
|
|
|
CVE_PRODUCT = "linux:linux_kernel_ixgbe"
|
|
|
|
S = "${WORKDIR}/${BP}/src"
|
|
|
|
EXTRA_OEMAKE='KSRC="${STAGING_KERNEL_BUILDDIR}" KVER="${KERNEL_VERSION}" INSTALL_MOD_PATH="${D}"'
|
|
|
|
KERNEL_MODULE_AUTOLOAD:append:intel-core2-32 = " ixgbevf"
|
|
KERNEL_MODULE_AUTOLOAD:append:intel-corei7-64 = " ixgbevf"
|
|
|
|
inherit module
|
|
|
|
do_install:append () {
|
|
# Install scripts/set_irq_affinity
|
|
install -d ${D}${sysconfdir}/network
|
|
install -m 0755 ${S}/../scripts/set_irq_affinity ${D}${sysconfdir}/network
|
|
|
|
rm -rf ${D}${prefix}/man
|
|
}
|
|
|
|
PACKAGES += "${PN}-script"
|
|
|
|
FILES:${PN}-script += "${sysconfdir}/network/set_irq_affinity"
|
|
|
|
# This was fixed in kernel v4.4
|
|
CVE_CHECK_WHITELIST += "CVE-2015-1142857"
|