c2ee64e0c7
Move content from stx-gplv2 into stx-integ Packages will be relocated to stx-integ: base/ bash cgcs-users cluster-resource-agents dpkg haproxy libfdt netpbm rpm database/ mariadb filesystem/ iscsi-initiator-utils filesystem/drbd/ drbd-tools kernel/kernel-modules/ drbd integrity intel-e1000e intel-i40e intel-i40evf intel-ixgbe intel-ixgbevf qat17 tpmdd ldap/ ldapscripts networking/ iptables net-tools Change-Id: Ic6a2675483c3b438d52702f00f9ba532b9eec335 Story: 2002801 Task: 22687 Signed-off-by: Scott Little <scott.little@windriver.com>
28 lines
747 B
Diff
28 lines
747 B
Diff
From af5c220050e90b388fdff4b3730cde150988daec Mon Sep 17 00:00:00 2001
|
|
From: Dahir Osman <dahir.osman@windriver.com>
|
|
Date: Fri, 23 Sep 2016 11:17:54 -0400
|
|
Subject: [PATCH] i40evf: Fix compile issue.
|
|
|
|
The Makefile was using the wrong CONFIG to compile the driver sources.
|
|
The driver was not being built at all without this fix.
|
|
---
|
|
src/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/Makefile b/src/Makefile
|
|
index b50a61d..610c5f9 100644
|
|
--- a/src/Makefile
|
|
+++ b/src/Makefile
|
|
@@ -28,7 +28,7 @@ ifneq ($(KERNELRELEASE),)
|
|
# Makefile for the Intel(R) 10GbE PCI Express Virtual Function Driver
|
|
#
|
|
|
|
-obj-$(CONFIG_IXGBE) += ixgbevf.o
|
|
+obj-$(CONFIG_IXGBEVF) += ixgbevf.o
|
|
|
|
define ixgbevf-y
|
|
ixgbevf_main.o
|
|
--
|
|
1.9.1
|
|
|