aboutsummaryrefslogtreecommitdiffstats
path: root/src/dpdk/Makefile
diff options
context:
space:
mode:
authorAihua Li <aihua.li@huawei.com>2015-03-11 14:12:41 -0700
committerAihua Li <aihua.li@huawei.com>2015-03-12 10:21:34 -0700
commitb4b06d27b062a65ef98753d7f1d9d340fa773329 (patch)
treed454fdd1a6361ede58c6412a6e6c88eddc22e199 /src/dpdk/Makefile
parentbde8e3211f4e80cce5c6521a09528a9cc403d6d2 (diff)
added mechanism to pull upstream packages and provided single top-level make
Change-Id: I13bcce3104377cac84a736cfd9a3d9df208e91f0 JIRA: VSPERF-25 Signed-off-by: Aihua Li <aihua.li@huawei.com> Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com> Reviewed-by: Gene Snider <eugene.snider@huawei.com> Reviewed-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'src/dpdk/Makefile')
-rw-r--r--src/dpdk/Makefile61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile
new file mode 100644
index 00000000..65a634b7
--- /dev/null
+++ b/src/dpdk/Makefile
@@ -0,0 +1,61 @@
+# makefile to manage dpdk package
+#
+# Copyright (C) 2015 OPNFV
+#
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved. This file is offered as-is,
+# without warranty of any kind.
+#
+# Contributors:
+# Aihua Li, Huawei Technologies.
+
+include ../mk/master.mk
+include ../package-list.mk
+
+.PHONY: install force_make
+
+WORK_DIR = dpdk
+TAG_DONE_FLAG = $(WORK_DIR)/.$(DPDK_TAG).tag.done
+
+# the name has been changed from version to version
+ifeq ($(DPDK_TAG),v1.6.0r0)
+ DPDK_TARGET = x86_64-default-linuxapp-gcc
+ CONFIG_FILE = $(WORK_DIR)/config/defconfig_x86_64-default-linuxapp-gcc
+else
+ DPDK_TARGET = x86_64-native-linuxapp-gcc
+ CONFIG_FILE = $(WORK_DIR)/config/common_linuxapp
+endif
+
+all: force_make
+ @echo "Finished making $(WORK_DIR) "
+
+INSTALL_TARGET = force_make
+
+force_make: $(TAG_DONE_FLAG)
+ $(AT)cd $(WORK_DIR); make config T=$(DPDK_TARGET) && make
+ @echo "Make done"
+
+install: $(INSTALL_TARGET)
+ $(AT)sudo cp -a $(WORK_DIR)/$(DPDK_TARGET)/kmod $(INSTALL_DIR)/lib/modules/$(KERNEL_VERSION)
+ @echo "install done"
+
+# hard way to clean and clobber
+clean:
+clobber:
+ $(AT)rm -rf $(WORK_DIR)
+
+# cleanse is for developer who would like to keep the
+# clone git repo, saving time to fetch again from url
+cleanse:
+ $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f
+
+$(WORK_DIR):
+ $(AT)git clone $(DPDK_URL)
+
+$(TAG_DONE_FLAG): $(WORK_DIR)
+ $(AT)cd $(WORK_DIR); git checkout $(DPDK_TAG)
+ $(AT)sed -i 's/CONFIG_RTE_BUILD_COMBINE_LIBS=n/CONFIG_RTE_BUILD_COMBINE_LIBS=y/g' $(CONFIG_FILE)
+ # KNI was causing the 1.6.0 build to fail
+ $(AT)sed -i 's/CONFIG_RTE_LIBRTE_KNI=y /CONFIG_RTE_LIBRTE_KNI=n/g' $(CONFIG_FILE)
+ $(AT)touch $@