From b4b06d27b062a65ef98753d7f1d9d340fa773329 Mon Sep 17 00:00:00 2001 From: Aihua Li Date: Wed, 11 Mar 2015 14:12:41 -0700 Subject: added mechanism to pull upstream packages and provided single top-level make Change-Id: I13bcce3104377cac84a736cfd9a3d9df208e91f0 JIRA: VSPERF-25 Signed-off-by: Aihua Li Reviewed-by: Maryam Tahhan Reviewed-by: Gene Snider Reviewed-by: Stephen Finucane --- src/dpdk/Makefile | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/dpdk/Makefile (limited to 'src/dpdk/Makefile') 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 $@ -- cgit 1.2.3-korg