Merge "Tools: Improve Stability."
[vswitchperf.git] / src / dpdk / Makefile
1 # makefile to manage dpdk package
2 #
3
4 # Copyright 2015-2016 OPNFV
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 #
19 # Contributors:
20 #   Aihua Li, Huawei Technologies.
21 #   Martin Klozik, Intel Corporation.
22 #   Christian Trautman, Red Hat Inc.
23
24 include ../mk/master.mk
25 include ../package-list.mk
26 include /etc/os-release
27
28 .PHONY: install force_make
29
30 ifndef VHOST_USER
31     VHOST_USER = n
32 endif
33 WORK_DIR = dpdk
34 TAG_DONE_FLAG = $(WORK_DIR)/.$(DPDK_TAG).tag.done
35
36 # VHOST configuration options are stored in different files based on DPDK version
37 # v1.2.3r0-v1.6.0r2 - configuration inside config/defconfig_x86_64-default-linuxapp-gcc
38 # v1.7.0-rc1-v2.2.0 - configuration inside config/common_linuxapp
39 # v16 and newer - configuration split between config/common_linuxapp and config/common_base
40 DPDK_TAG_MAJOR = $(shell echo $(DPDK_TAG) | cut -d. -f1)
41 DPDK_TAG_MINOR = $(shell echo $(DPDK_TAG) | cut -d. -f2)
42 ifeq ($(DPDK_TAG_MAJOR),v1)
43 ifeq ($(DPDK_TAG_MINOR), $(filter $(DPDK_TAG_MINOR), 7 8))
44     DPDK_TARGET = x86_64-native-linuxapp-gcc
45     CONFIG_FILE_LINUXAPP = $(WORK_DIR)/config/common_linuxapp
46 else
47     DPDK_TARGET = x86_64-default-linuxapp-gcc
48     CONFIG_FILE_LINUXAPP = $(WORK_DIR)/config/defconfig_x86_64-default-linuxapp-gcc
49 endif
50 else
51 ifeq ($(DPDK_TAG_MAJOR),v2)
52     DPDK_TARGET = x86_64-native-linuxapp-gcc
53     CONFIG_FILE_LINUXAPP = $(WORK_DIR)/config/common_linuxapp
54 else
55     DPDK_TARGET = x86_64-native-linuxapp-gcc
56     CONFIG_FILE_BASE = $(WORK_DIR)/config/common_base
57     CONFIG_FILE_LINUXAPP = $(WORK_DIR)/config/common_linuxapp
58 endif
59 endif
60
61 all: force_make
62         @echo "Finished making $(WORK_DIR) "
63
64 INSTALL_TARGET = force_make
65
66 # modify CONFIG_FILE to enable VHOST_USER build and restore original CONFIG_FILE after the build
67 # DPDK v16 comments:
68 ## CONFIG_RTE_BUILD_COMBINE_LIBS has been obsoleted
69 ## CONFIG_RTE_LIBRTE_VHOST and CONFIG_RTE_LIBRTE_KNI are listed in both config_base and config_linuxapp,
70 ## values from config_linuxapp will be used, but options are modified at both places to avoid confusion.
71 force_make: $(TAG_DONE_FLAG)
72         $(AT)cd $(WORK_DIR) && git pull $(DPDK_URL) $(DPDK_TAG)
73 ifdef CONFIG_FILE_BASE
74         $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_VHOST_USER=.\+/CONFIG_RTE_LIBRTE_VHOST_USER=$(VHOST_USER)/g' $(CONFIG_FILE_BASE)
75         $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_VHOST=./CONFIG_RTE_LIBRTE_VHOST=y/g' $(CONFIG_FILE_BASE)
76         $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_KNI=./CONFIG_RTE_LIBRTE_KNI=n/g' $(CONFIG_FILE_BASE)
77         $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_VHOST_NUMA=./CONFIG_RTE_LIBRTE_VHOST_NUMA=y/g' $(CONFIG_FILE_BASE)
78 else
79         $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_VHOST_USER=.\+/CONFIG_RTE_LIBRTE_VHOST_USER=$(VHOST_USER)/g' $(CONFIG_FILE_LINUXAPP)
80         $(AT)sed -i -e 's/CONFIG_RTE_BUILD_COMBINE_LIBS=./CONFIG_RTE_BUILD_COMBINE_LIBS=y/g' $(CONFIG_FILE_LINUXAPP)
81 endif
82 # CentOS 7.3 specific config changes to compile
83 ifeq ($(ID),"centos")
84 ifeq ($(VERSION_ID),"7")
85         $(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
86 endif
87 endif
88 # RHEL 7.3 specific config changes to compile
89 ifeq ($(ID),"rhel")
90 ifeq ($(VERSION_ID),"7.3")
91         $(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
92 endif
93 endif
94         $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_VHOST=./CONFIG_RTE_LIBRTE_VHOST=y/g' $(CONFIG_FILE_LINUXAPP)
95         $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_KNI=./CONFIG_RTE_LIBRTE_KNI=n/g' $(CONFIG_FILE_LINUXAPP)
96         $(AT)cd $(WORK_DIR); make install T=$(DPDK_TARGET) -j DESTDIR=$(WORK_DIR)
97         $(AT)cd `dirname $(CONFIG_FILE_LINUXAPP)` && git checkout `basename $(CONFIG_FILE_LINUXAPP)` && cd -
98 ifdef CONFIG_FILE_BASE
99         $(AT)cd `dirname $(CONFIG_FILE_BASE)` && git checkout `basename $(CONFIG_FILE_BASE)` && cd -
100 endif
101         $(AT)echo "VHOST_USER = $(VHOST_USER)"
102         @echo "Make done"
103
104 install: $(INSTALL_TARGET)
105         $(AT)sudo cp -a $(WORK_DIR)/$(DPDK_TARGET)/kmod $(INSTALL_DIR)/lib/modules/$(KERNEL_VERSION)
106         @echo "install done"
107
108 # hard way to clean and clobber
109 clean:
110         $(AT)cd $(WORK_DIR) && git clean -xfd *.o
111 clobber:
112         $(AT)rm -rf $(WORK_DIR)
113
114 # distclean is for developer who would like to keep the
115 # clone git repo, saving time to fetch again from url
116 distclean:
117         $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f
118
119 test:
120         @echo "Make test in $(WORK_DIR) (stub) "
121
122 sanity:
123         @echo "Make sanity in $(WORK_DIR) (stub) "
124
125 $(WORK_DIR):
126         $(AT)git clone $(DPDK_URL) dpdk
127
128 $(TAG_DONE_FLAG): $(WORK_DIR)
129         $(AT)cd $(WORK_DIR); git checkout $(DPDK_TAG)
130         $(AT)touch $@