Enable Intel AES PMD
[deb_dpdk.git] / debian / rules
1 #!/usr/bin/make -f
2 # See debhelper(7) (uncomment to enable)
3 # output every command that modifies files on the build system.
4 export DH_VERBOSE=1
5 export DH_OPTIONS=-v
6
7 # see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
8 include /usr/share/dpkg/default.mk
9
10 DPDK_ABI := $(shell echo $(DEB_VERSION_UPSTREAM) | cut -d '-' -f1 | cut -d '.'  -f1-2 | cut -d '~' -f1)
11 DPDK_DRIVER_DIR ?= dpdk-$(DPDK_ABI)-drivers
12
13 # see FEATURE AREAS in dpkg-buildflags(1)
14 export DEB_BUILD_MAINT_OPTIONS = hardening=+all,-pie
15
16 # see ENVIRONMENT in dpkg-buildflags(1)
17 DPKG_EXPORT_BUILDFLAGS = 1
18 include /usr/share/dpkg/buildflags.mk
19
20 # Support backporting to jessie
21 dpkg_version_lt = $(shell dpkg --compare-versions $$(dpkg --status dpkg-dev | grep Version | cut -d' ' -f2) lt-nl "1.18.11" && echo yes)
22 ifeq (yes, $(dpkg_version_lt))
23         # package maintainers to append CFLAGS
24         # For Debian, dpkg-dev >= 1.18.11 and gcc 6.x, dpkg-buildflags and gcc
25         # handle -fPIC and related flags relying on specs files
26         # (/usr/share/dpkg/*specs)
27         export DEB_CFLAGS_MAINT_APPEND  = -fPIC
28         export EXTRA_CFLAGS=$(CFLAGS)
29         export EXTRA_CPPFLAGS=$(CPPFLAGS)
30         export HOST_EXTRA_CFLAGS=$(CFLAGS)
31         export HOST_EXTRA_CPPFLAGS=$(CPPFLAGS)
32         # need to be stripped as DPDK build system adds them and it would be -Wl,-Wl,opt
33         export EXTRA_LDFLAGS=$(shell echo $(LDFLAGS) | sed 's/-Wl,//g')
34         # HOST_CC build system does not add -Wl ...
35         export EXTRA_HOST_LDFLAGS=$(LDFLAGS)
36 endif
37
38 export RTE_DEVEL_BUILD=n
39 export EXTRA_CFLAGS+=-g
40
41 # People rebuilding this package can overwrite DPDK_CONFIG, RTE_MACHINE and
42 # RTE_TARGET via DEB_BUILD_OPTIONS if they like
43 ifneq (,$(filter dpdk_config=%,$(DEB_BUILD_OPTIONS)))
44     DPDK_CONFIG ?= $(patsubst dpdk_config=%,%,$(filter dpdk_config=%,$(DEB_BUILD_OPTIONS)))
45 endif
46 ifneq (,$(filter rte_machine=%,$(DEB_BUILD_OPTIONS)))
47     RTE_MACHINE ?= $(patsubst rte_machine=%,%,$(filter rte_machine=%,$(DEB_BUILD_OPTIONS)))
48 endif
49 ifneq (,$(filter rte_target=%,$(DEB_BUILD_OPTIONS)))
50     RTE_TARGET ?= $(patsubst rte_target=%,%,$(filter rte_target=%,$(DEB_BUILD_OPTIONS)))
51 endif
52
53 ifneq (,$(filter $(DEB_HOST_ARCH), arm64))
54 DPDK_CONFIG ?= "arm64-armv8a-linuxapp-gcc"
55 RTE_MACHINE ?= "armv8a"
56 RTE_TARGET ?= "arm64-armv8a-linuxapp-gcc"
57 INCLUDE_ARCH := arm
58 else
59 ifneq (,$(filter $(DEB_HOST_ARCH), ppc64el))
60 DPDK_CONFIG ?= "ppc_64-power8-linuxapp-gcc"
61 RTE_MACHINE ?= "power8"
62 RTE_TARGET ?= "ppc_64-power8-linuxapp-gcc"
63 INCLUDE_ARCH := ppc_64
64 else
65 DPDK_CONFIG ?= "$(DEB_HOST_GNU_CPU)-native-linuxapp-gcc"
66 RTE_MACHINE ?= "default"
67 RTE_TARGET ?= "$(DEB_HOST_GNU_CPU)-default-linuxapp-gcc"
68 INCLUDE_ARCH := x86
69 endif
70 endif
71 DPDK_STATIC_DIR = "debian/build/static-root"
72 DPDK_SHARED_DIR = "debian/build/shared-root"
73
74 # now stable with parallel comilation, so support -j
75 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
76     PAR := $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
77     MAKEFLAGS += -j$(PAR)
78 endif
79
80 ifneq (,$(findstring nodoc,$(DEB_BUILD_OPTIONS)))
81 BUILD_DOCS=n
82 else
83 BUILD_DOCS=y
84 endif
85
86 ifneq (,$(findstring nostatic,$(DEB_BUILD_OPTIONS)))
87 BUILD_STATIC_LIB=n
88 else
89 BUILD_STATIC_LIB=y
90 endif
91
92 # kernel_modules can be passed via DEB_BUILD_OPTIONS to enable building the
93 # optional binary kernel modules package. By default it will be built against
94 # the current kernel, or ksrc can be passed with a path to the target kernel
95 # sources instead.
96 ifeq (,$(findstring kernel_modules,$(DEB_BUILD_OPTIONS)))
97 DPDK_CONFIG_BUILD_KMOD=n
98 KSRC=""
99 else
100 ifneq (,$(filter ksrc=%,$(DEB_BUILD_OPTIONS)))
101     KSRC := $(patsubst ksrc=%,%,$(filter ksrc=%,$(DEB_BUILD_OPTIONS)))
102 else
103     KSRC := /lib/modules/$(shell uname -r)/build
104 endif
105
106 KVERS := $(shell perl debian/kernel-version $(KSRC))
107 export KVERS
108 export MODULE_CFLAGS=-fno-PIE
109
110 DPDK_CONFIG_BUILD_KMOD=y
111
112 # Since the binary module package is generated at build time depending on the
113 # local kernel version, we have to append the new package in d/control.
114 # We cannot use a separate control file since that wouldn't work with
115 # dpkg-genchanges, and also would require a lot of overrides for debhelpers.
116 get_built_using ?= $(filter-out (=),$(shell dpkg-query -f='$${source:Package} (=$${source:Version})' -W $1))
117
118 build:
119         @if [ x"$(KVERS)" = x ] ; then \
120             echo 'No version in $(KSRC)/include/linux/version.h' >&2; \
121             exit 1; \
122         fi
123         sh debian/prep-modules $(KSRC)
124         cat debian/control.modules >> debian/control
125         dh $@ --with python3,dkms,systemd
126 endif
127
128 %:
129         dh $@ --with python3,dkms,systemd
130
131 override_dh_gencontrol:
132         dh_gencontrol
133         # debian/files will not exist until dh_gencontrol has ran at least once,
134         # so we need to run gencontrol for libdpdk-dev and libdpdk-dbgsym after.
135         # The list of libraries and PMDs is everchanging, so generate the dependency
136         # list for libdpdk-dev to avoid having to maintain it manually.
137         # Same for the recommends list for dpdk, were we want the PMDs and the mempools.
138         dh_gencontrol -p libdpdk-dev -- -V"librte:Depends=`grep -E 'librte-*' ./debian/files | grep -v dbgsym | tr '_' ' ' | awk '{ print $$1,"(=",$$2 ")" }' | paste -sd ',' - | sed -e 's/,/, /g'`"
139         dh_gencontrol -p dpdk -- -V"librte:Recommends=`grep -E 'librte-(pmd|mempool).*' ./debian/files | grep -v dbgsym | tr '_' ' ' | awk '{ print $$1,"(=",$$2 ")" }' | paste -sd ',' - | sed -e 's/,/, /g'`"
140 ifneq (,$(findstring kernel_modules,$(DEB_BUILD_OPTIONS)))
141         dh_gencontrol -p dpdk-modules-$(KVERS) -- \
142                 -v`cat debian/VERSION` \
143                 -V'built:using:kernel=$(call get_built_using,linux-headers-$(KVERS))'
144 endif
145 ifneq (,$(findstring dbgsym_meta,$(DEB_BUILD_OPTIONS)))
146         ./debian/dh-dbgsym-metapkg libdpdk$(DPDK_ABI)-dbgsym
147 endif
148
149 # dbgsym_meta can be passed via DEB_BUILD_OPTIONS to enable building the
150 # optional dbgsym meta package libdpdk<ABI>-dbgsym.
151 # This is not built by default as it would go in main but depend on
152 # packages in the debian-debug archive.
153 # Debian Developers and FTP masters strongly discourage this.
154 # We provide this optional flag as a convenience for rebuilders.
155 ifneq (,$(findstring dbgsym_meta,$(DEB_BUILD_OPTIONS)))
156 override_dh_builddeb:
157         dh_builddeb
158         dh_builddeb -plibdpdk$(DPDK_ABI)-dbgsym
159 endif
160
161 override_dh_auto_clean:
162         rm -rf debian/build debian/tmp debian/dpdk-modules-* \
163                 debian/control.modules debian/VERSION
164         sed -i '/Package: dpdk-modules-/,/`tail -n1 debian/control.modules.in`/d' debian/control
165         test -L config/defconfig_$(DPDK_CONFIG) && rm -f config/defconfig_$(DPDK_CONFIG) || true
166         rm -f debian/dpdk-igb-uio-dkms.dkms debian/dpdk-rte-kni-dkms.dkms
167         rm -f debian/dpdk-dev.preinst
168
169 override_dh_auto_configure:
170         # Add support for a custom defconfig file in the debian directory.
171 ifneq (,$(filter dpdk_config=%,$(DEB_BUILD_OPTIONS)))
172         test -e config/defconfig_$(DPDK_CONFIG) || ln -fs ../debian/defconfig_$(DPDK_CONFIG) config/defconfig_$(DPDK_CONFIG)
173 endif
174         # report dpkg-buildflags status to build log
175         dpkg-buildflags --status
176         echo EXTRA_CFLAGS $$EXTRA_CFLAGS
177         echo EXTRA_LDFLAGS: $$EXTRA_LDFLAGS
178         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_STATIC_DIR) T=$(DPDK_CONFIG) config
179 ifeq (,$(filter dpdk_config=%,$(DEB_BUILD_OPTIONS)))
180         sed -ri -e 's,(RTE_MACHINE=).*,\1$(RTE_MACHINE),' \
181                 -e 's,(RTE_NEXT_ABI=).*,\1n,' \
182                 -e 's,(CONFIG_RTE_EAL_IGB_UIO=).*,\1$(DPDK_CONFIG_BUILD_KMOD),' \
183                 -e 's,(CONFIG_RTE_KNI_KMOD=).*,\1$(DPDK_CONFIG_BUILD_KMOD),' \
184                 -e 's,(LIBRTE_PMD_PCAP=).*,\1y,' \
185                 -e 's,(CONFIG_RTE_LIBRTE_MLX4_PMD=).*,\1y,' \
186                 -e 's,(CONFIG_RTE_LIBRTE_MLX5_PMD=).*,\1y,' \
187                 -e 's,(CONFIG_RTE_EAL_PMD_PATH=).*,\1"/usr/lib/$(DEB_HOST_MULTIARCH)/$(DPDK_DRIVER_DIR)/",' \
188                 -e 's,(LIBRTE_PMD_OPENSSL=).*,\1y,' \
189                 $(DPDK_STATIC_DIR)/.config
190 endif
191         echo "CONFIG_RTE_MAJOR_ABI=\"$(DPDK_ABI)\"" >> \
192                 $(DPDK_STATIC_DIR)/.config
193         # Intel IPSEC library is amd64-only
194 ifneq (,$(filter $(DEB_HOST_ARCH), amd64))
195         sed -ri -e 's,(CONFIG_RTE_LIBRTE_PMD_AESNI_MB=).*,\1y,' \
196                 -e 's,(CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=).*,\1y,' \
197                 $(DPDK_STATIC_DIR)/.config
198 endif
199         dh_auto_configure
200
201 override_dh_auto_build-indep:
202 ifeq (y,$(BUILD_DOCS))
203         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_STATIC_DIR) doc-api-html doc-guides-html
204 endif
205
206 override_dh_auto_install-indep:
207         # Package: dpdk-doc
208         # All files based on the install-doc rule (includes examples)
209 ifeq (y,$(BUILD_DOCS))
210         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_STATIC_DIR) prefix=/usr \
211                 DESTDIR=debian/dpdk-doc install-doc
212 endif
213
214 override_dh_auto_build-arch:
215 ifeq (y,$(BUILD_STATIC_LIB))
216         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_STATIC_DIR) RTE_KERNELDIR=$(KSRC) build
217 endif
218         # Unfortunately the decision about having static or shared libraries is
219         # made for the whole build, which then produces only .a or .so files
220         # (but not both).
221         # And the target layout for target selection has no field for the
222         # type of library.
223         # Right now I hack this by doing a second build which only differs in
224         # the selection of shared libs.
225         # Shared libs should be default, so the previous static build is only
226         # used to get static libraries.
227         cp -a $(DPDK_STATIC_DIR) $(DPDK_SHARED_DIR)
228         sed -ri 's,(RTE_BUILD_SHARED_LIB=).*,\1y,' \
229                 $(DPDK_SHARED_DIR)/.config
230         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_SHARED_DIR) RTE_KERNELDIR=$(KSRC) build
231 ifeq (y,$(BUILD_DOCS))
232         # need to be around for dh_installman to be picked up
233         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_SHARED_DIR) RTE_KERNELDIR=$(KSRC) doc-guides-man
234 endif
235         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_SHARED_DIR) RTE_KERNELDIR=$(KSRC) test-build
236
237 override_dh_auto_install-arch: LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
238 override_dh_auto_install-arch:
239         # Package: dpdk (runtime)
240 ifeq (y,$(BUILD_STATIC_LIB))
241         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_STATIC_DIR) prefix=/usr libdir=$(LIBDIR) \
242                 DESTDIR=debian/dpdk install-runtime
243 endif
244         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_SHARED_DIR) prefix=/usr libdir=$(LIBDIR) \
245                 DESTDIR=debian/dpdk install-runtime
246         mkdir -p debian/dpdk/etc/dpdk
247         cp debian/dpdk.interfaces debian/dpdk/etc/dpdk/interfaces
248         rm debian/dpdk/usr/sbin/dpdk-devbind
249         mkdir -p debian/dpdk/sbin
250         ln -s /usr/share/dpdk/usertools/dpdk-devbind.py \
251                 debian/dpdk/sbin/dpdk-devbind
252         # Package: dpdk-dev (build environment)
253         # workaround to fix symbolic link creation
254         mkdir -p debian/dpdk-dev/$(LIBDIR)
255         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_SHARED_DIR) prefix=/usr libdir=$(LIBDIR) \
256                 DESTDIR=debian/dpdk-dev install-sdk
257         # remove workaround
258         rm -fr debian/dpdk-dev/usr/lib
259         cp $(DPDK_SHARED_DIR)/.config debian/dpdk-dev/usr/share/dpdk/config
260         sed -e 's/SDK_TARGET/$(RTE_TARGET)/' debian/dpdk-sdk-env.sh.in > \
261                 debian/dpdk-dev/usr/share/dpdk/dpdk-sdk-env.sh
262         # include the bundled autotest suite to be usable from the dpdk-dev package
263         if grep -qs 'CONFIG_RTE_APP_TEST=y' $(DPDK_SHARED_DIR)/.config; then \
264                 mkdir -p debian/dpdk-dev/usr/share/dpdk/test; \
265                 cp -a test/test/autotest* debian/dpdk-dev/usr/share/dpdk/test; \
266                 cp $(DPDK_SHARED_DIR)/app/test debian/dpdk-dev/usr/share/dpdk/test/; \
267                 cp $(DPDK_SHARED_DIR)/app/testacl debian/dpdk-dev/usr/share/dpdk/test/; \
268                 cp $(DPDK_SHARED_DIR)/app/testpipeline debian/dpdk-dev/usr/share/dpdk/test/; \
269         fi
270         # since we move libs to multiarch dirs update the non aware symlink
271         rm debian/dpdk-dev/usr/share/dpdk/$(RTE_TARGET)/lib
272         ln -rs debian/dpdk-dev/$(LIBDIR)/ \
273                 debian/dpdk-dev/usr/share/dpdk/$(RTE_TARGET)/lib
274         # Package: libdpdk-dev (bare headers, static devel libs and linker
275         # script)
276         mkdir -p debian/libdpdk-dev/$(LIBDIR)
277         # linker script
278         mv debian/dpdk/$(LIBDIR)/libdpdk.so debian/libdpdk-dev/$(LIBDIR)/
279         # includes
280         # Some headers have architecture-specific content, but the upstream build
281         # system installs them in the same directory, breaking multiarch.
282         # Move them in /usr/include/<arch>/dpdk instead.
283         mkdir -p debian/libdpdk-dev/usr/include/$(DEB_HOST_MULTIARCH)/dpdk
284         # Before moving the files, remove the symlink in usr/share/dpdk and copy them over,
285         # as the SDK subdir is architecture specific and requires the arch-specific headers
286         # in the top level
287         rm -f debian/dpdk-dev/usr/share/dpdk/$(RTE_TARGET)/include
288         mkdir -p debian/dpdk-dev/usr/share/dpdk/$(RTE_TARGET)/include
289         cp -r debian/dpdk-dev/usr/include/dpdk/* debian/dpdk-dev/usr/share/dpdk/$(RTE_TARGET)/include
290         # genereate the preinst to deal with the symlink -> directory transition smoothly
291         sed "s/@@RTE_TARGET@@/$(RTE_TARGET)/g" debian/dpdk-dev.preinst.in > debian/dpdk-dev.preinst
292         mv $(addprefix debian/dpdk-dev/usr/include/dpdk/,$(notdir $(wildcard lib/librte_eal/common/include/arch/$(INCLUDE_ARCH)/*.h))) \
293                 debian/libdpdk-dev/usr/include/$(DEB_HOST_MULTIARCH)/dpdk/
294         mv debian/dpdk-dev/usr/include/dpdk/rte_config.h \
295                 debian/libdpdk-dev/usr/include/$(DEB_HOST_MULTIARCH)/dpdk/
296         mv debian/dpdk-dev/usr/include/dpdk debian/libdpdk-dev/usr/include/
297         rmdir debian/dpdk-dev/usr/include
298         # backward compatibility: to ease things for the majority of users,
299         # which are on x86_64, symlink the x86 headers into the global
300         # directory.
301 ifeq (x86_64-linux-gnu,$(DEB_HOST_MULTIARCH))
302         ln -rs debian/libdpdk-dev/usr/include/$(DEB_HOST_MULTIARCH)/dpdk/*.h \
303                 debian/libdpdk-dev/usr/include/dpdk
304 endif
305         # have the DKMS build include the correct per-arch directory
306         sed "s/@@DEB_HOST_MULTIARCH@@/$(DEB_HOST_MULTIARCH)/g" debian/dpdk-igb-uio-dkms.dkms.in > debian/dpdk-igb-uio-dkms.dkms
307         sed "s/@@DEB_HOST_MULTIARCH@@/$(DEB_HOST_MULTIARCH)/g" debian/dpdk-rte-kni-dkms.dkms.in > debian/dpdk-rte-kni-dkms.dkms
308         # all static libs are in the dev package
309 ifeq (y,$(BUILD_STATIC_LIB))
310         mv debian/dpdk/$(LIBDIR)/lib*.a debian/libdpdk-dev/$(LIBDIR)/
311 endif
312         # symlinks to last .so's are in the non versioned libdpdk-dev as well
313         # this allows multiple libdpdk-<NAME><VER> at different VER concurrently
314         # libdpdk-dev depends on all sublibs so symlinks are never broken
315         mv debian/dpdk/$(LIBDIR)/*.so debian/libdpdk-dev/$(LIBDIR)/
316         # Package(s): libdpdk-<NAME><VER> (bare runtime libs)
317         for lib in $$(ls -1 debian/dpdk/$(LIBDIR)/*.so.*); do \
318           BN=$$(basename $${lib}); \
319           LN=$$(echo $${BN} | sed -e 's/\.so\.[0-9\.]*$$//' | tr '_' '-'); \
320           if echo $${LN} | grep -q ".*[0-9]$$"; then \
321             PKG=$${LN}-$(DPDK_ABI); \
322           else \
323             PKG=$${LN}$(DPDK_ABI); \
324           fi; \
325           LIBF="$$(basename $${lib})"; \
326           LIBD="debian/$${PKG}/$(LIBDIR)"; \
327           echo "moving $${lib} to dir $${LIBD} (PKG=$${PKG} BN=$${BN} LN={$${LN} LIBF=$${LIBF} LIBD=$${LIBD})"; \
328           mkdir -p $${LIBD}; \
329           mv $${lib} $${LIBD}; \
330           if [ "$${LIBF#librte_pmd_}x" != "$${LIBF}x" ]; then \
331             mkdir -p $${LIBD}/$(DPDK_DRIVER_DIR); \
332             echo "PMD: linking $${LIBF} into RTE_EAL_PMD_PATH at $${LIBD}/$(DPDK_DRIVER_DIR)/"; \
333             ln -s --relative --target-directory=$${LIBD}/$(DPDK_DRIVER_DIR)/ $${LIBD}/$${LIBF}; \
334           fi; \
335           if [ "$${LIBF#librte_mempool_}x" != "$${LIBF}x" ]; then \
336             mkdir -p $${LIBD}/$(DPDK_DRIVER_DIR); \
337             echo "MEMPOOL: linking $${LIBF} into RTE_EAL_PMD_PATH at $${LIBD}/$(DPDK_DRIVER_DIR)/"; \
338             ln -s --relative --target-directory=$${LIBD}/$(DPDK_DRIVER_DIR)/ $${LIBD}/$${LIBF}; \
339           fi; \
340           if [ "$${LIBF#librte_ifcvf_}x" != "$${LIBF}x" ]; then \
341             mkdir -p $${LIBD}/$(DPDK_DRIVER_DIR); \
342             echo "IFCVF: linking $${LIBF} into RTE_EAL_PMD_PATH at $${LIBD}/$(DPDK_DRIVER_DIR)/"; \
343             ln -s --relative --target-directory=$${LIBD}/$(DPDK_DRIVER_DIR)/ $${LIBD}/$${LIBF}; \
344           fi; \
345           if [ "$${LIBF#librte_eal}x" != "$${LIBF}x" ]; then \
346             mkdir -p $${LIBD}/$(DPDK_DRIVER_DIR); \
347           fi; \
348         done
349         # pkg-config
350         mkdir -p debian/libdpdk-dev/$(LIBDIR)/pkgconfig
351         LIBS=$$(sed -e 's/GROUP ( \(.*\) )/\1/' -e 's/lib/-l/g' -e 's/\.so//g' \
352                 $(CURDIR)/debian/libdpdk-dev/$(LIBDIR)/libdpdk.so); \
353         sed -e "s/@DPDK_LIBS@/$${LIBS}/" -e "s/@VERSION@/$(DEB_VERSION_UPSTREAM)/" \
354                 -e "s|@DEB_HOST_MULTIARCH@|$(DEB_HOST_MULTIARCH)|g" \
355                 debian/libdpdk.pc.in > debian/libdpdk-dev/$(LIBDIR)/pkgconfig/libdpdk.pc
356         # Package: dpdk-igb-uio-dkms
357         mkdir -p debian/dpdk-igb-uio-dkms/usr/src/dpdk-igb-uio-$(DEB_VERSION_UPSTREAM)
358         cp kernel/linux/igb_uio/* \
359                 debian/dpdk-igb-uio-dkms/usr/src/dpdk-igb-uio-$(DEB_VERSION_UPSTREAM)
360         # Package: dpdk-rte-kni-dkms
361         mkdir -p debian/dpdk-rte-kni-dkms/usr/src/dpdk-rte-kni-$(DEB_VERSION_UPSTREAM)
362         cp -a kernel/linux/kni/* \
363                 debian/dpdk-rte-kni-dkms/usr/src/dpdk-rte-kni-$(DEB_VERSION_UPSTREAM)
364 ifneq (,$(KVERS))
365         # Package: dpdk-modules-<kernel version>
366         $(MAKE) V=$(DH_VERBOSE) O=$(DPDK_SHARED_DIR) \
367                 kerneldir=/lib/modules/$(KVERS)/extra/dpdk \
368                 DESTDIR=debian/dpdk-modules-$(KVERS) install-kmod
369 endif
370
371 override_dh_dkms:
372         dh_dkms -V $(DEB_VERSION_UPSTREAM)
373
374 override_dh_installinit:
375         dh_installinit --no-start --no-restart-on-upgrade
376
377 override_dh_systemd_start:
378         dh_systemd_start --no-start --no-restart-on-upgrade
379
380 override_dh_auto_test:
381
382 override_dh_python3:
383         # dh_python only looks in /usr/share/package_name but dpdk-doc installs in
384         # /usr/share/dpdk, so pass /usr to catch all
385         dh_python3 --shebang=/usr/bin/python3 /usr
386