diff options
author | Matthias Runge <mrunge@redhat.com> | 2020-06-04 12:56:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2020-06-04 12:56:26 +0000 |
commit | f6bad3ff064f7277f5575b9e7d2a0bfb0c4bb85e (patch) | |
tree | cd1d9e9deb6b490b7bff6139098bc8335b22e3dc /src/dpdk | |
parent | cb32efb5873b44561e2ca3ca337636c7af035734 (diff) | |
parent | 9977debab139afcc964661085d6e0515e3dd82ad (diff) |
Merge "Moving DPDK Verion From 16.11 to 18.11. Updated the related section in userguide. Also updated the change in kni location for 18.11."
Diffstat (limited to 'src/dpdk')
-rw-r--r-- | src/dpdk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile index fc6a15d1..dec8cae5 100644 --- a/src/dpdk/Makefile +++ b/src/dpdk/Makefile @@ -86,13 +86,13 @@ endif # CentOS 7.3 specific config changes to compile ifeq ($(ID),"centos") ifeq ($(VERSION_ID),"7") - $(AT)sed -i.bak s@'SRCS-y += ethtool/igb/igb_main.c'@'#SRCS-y += ethtool/igb/igb_main.c'@g $(WORK_DIR)/lib/librte_eal/linuxapp/kni/Makefile + $(AT)sed -i.bak s@'SRCS-y += ethtool/igb/igb_main.c'@'#SRCS-y += ethtool/igb/igb_main.c'@g $(WORK_DIR)/kernel/linux/kni/Makefile endif endif # RHEL 7.3 specific config changes to compile ifeq ($(ID),"rhel") ifeq ($(VERSION_ID),"7.3") - $(AT)sed -i.bak s@'SRCS-y += ethtool/igb/igb_main.c'@'#SRCS-y += ethtool/igb/igb_main.c'@g $(WORK_DIR)/lib/librte_eal/linuxapp/kni/Makefile + $(AT)sed -i.bak s@'SRCS-y += ethtool/igb/igb_main.c'@'#SRCS-y += ethtool/igb/igb_main.c'@g $(WORK_DIR)/kernel/linux/kni/Makefile endif endif $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_KNI=./CONFIG_RTE_LIBRTE_KNI=n/g' $(CONFIG_FILE_LINUXAPP) |