diff options
| author | Syed Johan Arif Bin Syed Mohamad Fauzi <syed.johan.arif.syed.mohamad.fauzi@intel.com> | 2017-07-14 13:30:26 +0800 |
|---|---|---|
| committer | Saul Wold <sgw@linux.intel.com> | 2017-08-30 14:25:25 -0700 |
| commit | 0ce8a55610546b03991f67d5a2947f917493fbfc (patch) | |
| tree | 27a0afd40db0f61d0506bdc2b2af815beec8cab3 /common | |
| parent | 8504c7261867178bc0c17fc1e26fa706360277b3 (diff) | |
| download | meta-intel-0ce8a55610546b03991f67d5a2947f917493fbfc.tar.gz | |
ixgbe upgrade to version 5.1.3
Signed-off-by: Syed Johan Arif Bin Syed Mohamad Fauzi <syed.johan.arif.syed.mohamad.fauzi@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'common')
5 files changed, 182 insertions, 0 deletions
diff --git a/common/recipes-kernel/intel-ethernet/ixgbe.bb b/common/recipes-kernel/intel-ethernet/ixgbe.bb new file mode 100644 index 00000000..5b6f0311 --- /dev/null +++ b/common/recipes-kernel/intel-ethernet/ixgbe.bb | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | SUMMARY="ixgbe kernel driver for Intel Magnolia Park 10GbE" | ||
| 2 | DESCRIPTION="Intel 10-Gbps Ethernet driver for Magnolia Park" | ||
| 3 | AUTHOR = "Ong Boon Leong" | ||
| 4 | HOMEPAGE = "http://www.intel.com/network/connectivity/products/server_adapters.htm" | ||
| 5 | SECTION = "kernel/network" | ||
| 6 | LICENSE = "GPLv2" | ||
| 7 | LIC_FILES_CHKSUM = "file://${WORKDIR}/${PN}-${PV}/COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 8 | |||
| 9 | PV = "5.1.3" | ||
| 10 | PR = "r0" | ||
| 11 | |||
| 12 | SRC_URI = "https://sourceforge.net/projects/e1000/files/ixgbe%20stable/${PV}/ixgbe-${PV}.tar.gz" | ||
| 13 | SRC_URI += "file://0001-ixgbe-src-Makefile-change-make-install-to-make.patch" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "ae35ed547aa6a5087672c3f70ce1e676" | ||
| 16 | SRC_URI[sha256sum] = "9f537d79bddf0a087a17af632d57812d26d26bcfebbd4bdcf10df656ff055bb4" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/${PN}-${PV}/src" | ||
| 19 | SCRIPT_DIR = "${WORKDIR}/${PN}-${PV}/scripts" | ||
| 20 | |||
| 21 | EXTRA_OEMAKE='KSRC="${STAGING_KERNEL_BUILDDIR}" KVER="${KERNEL_VERSION}" \ | ||
| 22 | BUILD_ARCH="${TARGET_ARCH}" PREFIX="${D}" \ | ||
| 23 | SYSTEM_MAP_FILE="${STAGING_KERNEL_BUILDDIR}/System.map-${KERNEL_VERSION}" INSTALL_MOD_PATH="${D}"' | ||
| 24 | |||
| 25 | KERNEL_MODULE_AUTOLOAD_append_intel-core2-32 = " ixgbe" | ||
| 26 | KERNEL_MODULE_AUTOLOAD_append_intel-corei7-64 = " ixgbe" | ||
| 27 | |||
| 28 | inherit module | ||
| 29 | |||
| 30 | do_install_append () { | ||
| 31 | # Install scripts/set_irq_affinity | ||
| 32 | install -d ${D}/etc/network | ||
| 33 | install -m 0755 ${SCRIPT_DIR}/set_irq_affinity ${D}/etc/network | ||
| 34 | } | ||
| 35 | |||
| 36 | #SSTATE_DUPWHITELIST += "${STAGING_DIR_HOST}/lib/modules/${KERNEL_VERSION}/" | ||
| 37 | |||
| 38 | PACKAGES += "${PN}-script" | ||
| 39 | |||
| 40 | FILES_${PN}-script += "/etc/network/set_irq_affinity" | ||
| 41 | |||
| 42 | #Ignore "ERROR: QA Issue: ixgbe: Files/directories were installed but not shipped" | ||
| 43 | INSANE_SKIP_${PN} = "installed-vs-shipped" | ||
diff --git a/common/recipes-kernel/intel-ethernet/ixgbe/0001-ixgbe-src-Makefile-change-make-install-to-make.patch b/common/recipes-kernel/intel-ethernet/ixgbe/0001-ixgbe-src-Makefile-change-make-install-to-make.patch new file mode 100644 index 00000000..88f5335a --- /dev/null +++ b/common/recipes-kernel/intel-ethernet/ixgbe/0001-ixgbe-src-Makefile-change-make-install-to-make.patch | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | From 09c7a5afa76530a3720d97726f2b372f72b0af08 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "Goh, Wen Sen" <wen.sen.goh@intel.com> | ||
| 3 | Date: Wed, 22 Jun 2016 11:18:37 +0800 | ||
| 4 | Subject: [PATCH] ixgbe: src/Makefile: change make install to make | ||
| 5 | modules_install | ||
| 6 | |||
| 7 | Per guideline from Linux Documentation at | ||
| 8 | Documentation/kbuild/modules.txt | ||
| 9 | the correct target is "modules_install" not "install". | ||
| 10 | |||
| 11 | Upstream-Status: Inappropriate [It is tarball released by Intel Network | ||
| 12 | driver group] | ||
| 13 | |||
| 14 | --- | ||
| 15 | src/Makefile | 4 ++-- | ||
| 16 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 17 | |||
| 18 | diff --git a/Makefile b/Makefile | ||
| 19 | index 852becb..480ecee 100644 | ||
| 20 | --- a/Makefile | ||
| 21 | +++ b/Makefile | ||
| 22 | @@ -136,7 +136,7 @@ clean: | ||
| 23 | @-rm -rf *.${MANSECTION}.gz *.ko | ||
| 24 | |||
| 25 | # Install the modules and manpage | ||
| 26 | -install: default manfile | ||
| 27 | +modules_install: default manfile | ||
| 28 | @echo "Copying manpages..." | ||
| 29 | @install -D -m 644 ${DRIVER}.${MANSECTION}.gz ${INSTALL_MOD_PATH}${MANDIR}/man${MANSECTION}/${DRIVER}.${MANSECTION}.gz | ||
| 30 | @echo "Installing modules..." | ||
| 31 | @@ -191,6 +191,6 @@ help: | ||
| 32 | @echo ' Other variables may be available for tuning make process, see' | ||
| 33 | @echo ' Kernel Kbuild documentation for more information' | ||
| 34 | |||
| 35 | -.PHONY: default noisy clean manfile silent sparse ccc install uninstall help | ||
| 36 | +.PHONY: default noisy clean manfile silent sparse ccc modules_install uninstall help | ||
| 37 | |||
| 38 | endif # ifneq($(KERNELRELEASE),) | ||
| 39 | -- | ||
| 40 | 2.8.3 | ||
diff --git a/common/recipes-kernel/intel-ethernet/ixgbevf.bb b/common/recipes-kernel/intel-ethernet/ixgbevf.bb new file mode 100644 index 00000000..bee601ba --- /dev/null +++ b/common/recipes-kernel/intel-ethernet/ixgbevf.bb | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | SUMMARY="ixgbevf kernel driver for Intel Magnolia Park 10GbE" | ||
| 2 | DESCRIPTION="Intel 10-Gbps Ethernet driver for Magnolia Park" | ||
| 3 | AUTHOR = "Ong Boon Leong" | ||
| 4 | HOMEPAGE = "http://www.intel.com/network/connectivity/products/server_adapters.htm" | ||
| 5 | SECTION = "kernel/network" | ||
| 6 | LICENSE = "GPLv2" | ||
| 7 | LIC_FILES_CHKSUM = "file://${WORKDIR}/${PN}-${PV}/COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 8 | |||
| 9 | PV = "4.1.2" | ||
| 10 | PR = "r0" | ||
| 11 | |||
| 12 | SRC_URI = "https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/${PV}/ixgbevf-${PV}.tar.gz" | ||
| 13 | SRC_URI += "file://0001-ixgbevf-src-Makefile-change-make-install-to-make.patch" | ||
| 14 | SRC_URI += "file://0002-ixgbevf_common.patch" | ||
| 15 | |||
| 16 | SRC_URI[md5sum] = "f02ec46369d1ca949a1e9d2e0eb74d5f" | ||
| 17 | SRC_URI[sha256sum] = "ab2824541f8a2d8f7b7d26ccbb46359ef551c5d4625fb333014e2b8023ac3ab6" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/${PN}-${PV}/src" | ||
| 20 | SCRIPT_DIR = "${WORKDIR}/${PN}-${PV}/scripts" | ||
| 21 | |||
| 22 | EXTRA_OEMAKE='KSRC="${STAGING_KERNEL_BUILDDIR}" KVER="${KERNEL_VERSION}" \ | ||
| 23 | BUILD_ARCH="${TARGET_ARCH}" PREFIX="${D}" \ | ||
| 24 | SYSTEM_MAP_FILE="${STAGING_KERNEL_BUILDDIR}/System.map-${KERNEL_VERSION}" INSTALL_MOD_PATH="${D}"' | ||
| 25 | |||
| 26 | KERNEL_MODULE_AUTOLOAD_append_intel-core2-32 = " ixgbevf" | ||
| 27 | KERNEL_MODULE_AUTOLOAD_append_intel-corei7-64 = " ixgbevf" | ||
| 28 | |||
| 29 | inherit module | ||
| 30 | |||
| 31 | do_install_append () { | ||
| 32 | # Install scripts/set_irq_affinity | ||
| 33 | install -d ${D}/etc/network | ||
| 34 | install -m 0755 ${SCRIPT_DIR}/set_irq_affinity ${D}/etc/network | ||
| 35 | } | ||
| 36 | |||
| 37 | #SSTATE_DUPWHITELIST += "${STAGING_DIR_HOST}/lib/modules/${KERNEL_VERSION}/" | ||
| 38 | |||
| 39 | PACKAGES += "${PN}-script" | ||
| 40 | |||
| 41 | FILES_${PN}-script += "/etc/network/set_irq_affinity" | ||
| 42 | |||
| 43 | #Ignore "ERROR: QA Issue: ixgbe: Files/directories were installed but not shipped" | ||
| 44 | INSANE_SKIP_${PN} = "installed-vs-shipped" | ||
diff --git a/common/recipes-kernel/intel-ethernet/ixgbevf/0001-ixgbevf-src-Makefile-change-make-install-to-make.patch b/common/recipes-kernel/intel-ethernet/ixgbevf/0001-ixgbevf-src-Makefile-change-make-install-to-make.patch new file mode 100644 index 00000000..8234f589 --- /dev/null +++ b/common/recipes-kernel/intel-ethernet/ixgbevf/0001-ixgbevf-src-Makefile-change-make-install-to-make.patch | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | From 511ee0d8d40a3e76b3e9875a96228ff370dbdfc6 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "Goh, Wen Sen" <wen.sen.goh@intel.com> | ||
| 3 | Date: Wed, 22 Jun 2016 11:25:41 +0800 | ||
| 4 | Subject: [PATCH] ixgbevf_patch | ||
| 5 | |||
| 6 | --- | ||
| 7 | Makefile | 4 ++-- | ||
| 8 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 9 | |||
| 10 | diff --git a/Makefile b/Makefile | ||
| 11 | index 8df134a..8d5660e 100644 | ||
| 12 | --- a/Makefile | ||
| 13 | +++ b/Makefile | ||
| 14 | @@ -100,7 +100,7 @@ clean: | ||
| 15 | @-rm -rf *.${MANSECTION}.gz *.ko | ||
| 16 | |||
| 17 | # Install the modules and manpage | ||
| 18 | -install: default manfile | ||
| 19 | +modules_install: default manfile | ||
| 20 | @echo "Copying manpages..." | ||
| 21 | @install -D -m 644 ${DRIVER}.${MANSECTION}.gz ${INSTALL_MOD_PATH}${MANDIR}/man${MANSECTION}/${DRIVER}.${MANSECTION}.gz | ||
| 22 | @echo "Installing modules..." | ||
| 23 | @@ -145,6 +145,6 @@ help: | ||
| 24 | @echo ' Other variables may be available for tuning make process, see' | ||
| 25 | @echo ' Kernel Kbuild documentation for more information' | ||
| 26 | |||
| 27 | -.PHONY: default noisy clean manfile silent sparse ccc install uninstall help | ||
| 28 | +.PHONY: default noisy clean manfile silent sparse ccc modules_install uninstall help | ||
| 29 | |||
| 30 | endif # ifneq($(KERNELRELEASE),) | ||
| 31 | -- | ||
| 32 | 2.8.3 | ||
diff --git a/common/recipes-kernel/intel-ethernet/ixgbevf/0002-ixgbevf_common.patch b/common/recipes-kernel/intel-ethernet/ixgbevf/0002-ixgbevf_common.patch new file mode 100644 index 00000000..d442e24d --- /dev/null +++ b/common/recipes-kernel/intel-ethernet/ixgbevf/0002-ixgbevf_common.patch | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | From f74fbcd821a394dec58263fd2c2ea62eae298b2f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "Goh, Wen Sen" <wen.sen.goh@intel.com> | ||
| 3 | Date: Sun, 26 Jun 2016 12:01:36 +0800 | ||
| 4 | Subject: [PATCH] ixgbevf patch | ||
| 5 | |||
| 6 | --- | ||
| 7 | common.mk | 1 + | ||
| 8 | 1 file changed, 1 insertion(+) | ||
| 9 | |||
| 10 | diff --git a/common.mk b/common.mk | ||
| 11 | index b9b01c7..228a926 100644 | ||
| 12 | --- a/common.mk | ||
| 13 | +++ b/common.mk | ||
| 14 | @@ -289,6 +289,7 @@ export INSTALL_MOD_DIR ?= updates/drivers/net/ethernet/intel/${DRIVER} | ||
| 15 | kernelbuild = ${MAKE} $(if ${GCC_I_SYS},CC="${GCC_I_SYS}") \ | ||
| 16 | ${CCFLAGS_VAR}="${EXTRA_CFLAGS}" \ | ||
| 17 | -C "${KSRC}" \ | ||
| 18 | + CONFIG_IXGBE=m \ | ||
| 19 | CONFIG_${DRIVER_UPPERCASE}=m \ | ||
| 20 | M="${CURDIR}" \ | ||
| 21 | ${2} ${1}; | ||
| 22 | -- | ||
| 23 | 2.8.3 | ||
