]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - debian/rules
net/dst: add new function skb_dst_update_pmtu_no_confirm
[mirror_ubuntu-bionic-kernel.git] / debian / rules
CommitLineData
0d34a427
LO
1#!/usr/bin/make -f
2#
3# $(DEBIAN)/rules for Ubuntu linux
4#
5# Use this however you want, just give credit where credit is due.
6#
7# Copyright (c) 2007 Ben Collins <bcollins@ubuntu.com>
8#
9
10DEBIAN=$(shell awk -F= '($$1 == "DEBIAN") { print $$2 }' <debian/debian.env)
11
12# dpkg-buildpackage passes options that are incomptatible
13# with the kernel build.
14unexport CFLAGS
15unexport LDFLAGS
16
17export LC_ALL=C
18export SHELL=/bin/bash -e
19
20# Where do we find the common configuration.
21export DROOT=debian
22
23# Common variables for all architectures
24include $(DROOT)/rules.d/0-common-vars.mk
25
26# Pull in some arch specific stuff
27-include $(DEBIAN)/rules.d/$(arch).mk
28
29# Pull in some branch specific stuff. Used by LTS backport
30# branches to override master branch settings such as do_tools_common.
31-include $(DEBIAN)/rules.d/hooks.mk
32
33# Maintainer targets
34include $(DROOT)/rules.d/1-maintainer.mk
35
36do_linux_tools=$(sort $(filter-out false,$(do_tools_usbip) $(do_tools_cpupower) $(do_tools_perf) $(do_tools_x86)))
37do_cloud_tools=$(sort $(filter-out false,$(do_tools_hyperv)))
9b18b291 38do_tools_common?=true
f66a0ec7 39do_tools_host?=false
0938dca2 40do_tools_perf_jvmti?=false
0d34a427
LO
41
42# Don't build tools or udebs in a cross compile environment.
43ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH))
44 do_tools=false
45 disable_d_i=true
46 do_zfs=false
0d34a427
LO
47endif
48
b90b1fe0 49# Are any of the kernel signing options enabled.
44efa9e7 50any_signed=$(sort $(filter-out false,$(uefi_signed) $(fit_signed) $(opal_signed)))
b90b1fe0
AW
51ifeq ($(any_signed),true)
52bin_pkg_name=$(bin_pkg_name_unsigned)
53else
54bin_pkg_name=$(bin_pkg_name_signed)
55endif
56
0d34a427
LO
57# Stages -- support both DEB_STAGE=stage1 and DEB_BUILD_PROFILE=bootstrap
58ifeq ($(DEB_STAGE),stage1)
59 DEB_BUILD_PROFILES=stage1
60endif
61ifneq ($(DEB_BUILD_PROFILE),)
62 DEB_BUILD_PROFILES=$(DEB_BUILD_PROFILE)
63endif
64ifneq ($(filter stage1,$(DEB_BUILD_PROFILES)),)
65 do_tools=false
66 do_doc_package=false
67 do_source_package=false
68 do_flavour_image_package=false
69 do_flavour_header_package=false
70endif
71
72# Being used to build a mainline build -- turn off things which do not work.
73ifeq ($(do_mainline_build),true)
74 do_extras_package=false
75 do_tools=false
76 no_dumpfile=1
77 do_zfs=false
0fa05ca6
AW
78 skipabi=true
79 skipmodule=true
80 skipretpoline=true
0d34a427
LO
81endif
82
83# Disable tools build and packaging if do_tools != true
84ifneq ($(do_tools),true)
85 do_linux_tools=
86 do_cloud_tools=
87 do_tools_common=
f66a0ec7 88 do_tools_host=
0d34a427
LO
89endif
90
f13b795d
AW
91ifeq ($(do_zfs),false)
92 do_zfs_disable:=$(shell cat $(DROOT)/zfs-modules.ignore >>$(prev_abidir)/../modules.ignore)
93endif
94
0d34a427
LO
95# Either tools package needs the common source preparation
96do_any_tools=$(sort $(filter-out false,$(do_linux_tools) $(do_cloud_tools)))
97
98# autopkgtest -- rebuild support
99# only build the first flavour on the assumption it is representative
2c21160b 100ifneq ($(filter autopkgtest,$(DEB_BUILD_PROFILES)),)
0d34a427 101flavours := $(firstword $(flavours))
2c21160b 102disable_d_i=true
0d34a427
LO
103endif
104
997b8c41 105# Versions of dkms packages.
8f75472f
AR
106dkms_zfs_linux_version=$(shell gawk '/^zfs-linux / { print $$2; }' debian/dkms-versions)
107dkms_spl_linux_version=$(shell gawk '/^spl-linux / { print $$2; }' debian/dkms-versions)
997b8c41
AW
108dkms_nvidia_version=$(shell gawk '/^nvidia-graphics-drivers-/ { print $$2; }' debian/dkms-versions)
109
0d34a427
LO
110# Debian Build System targets
111binary: binary-indep binary-arch
112
113build: build-arch build-indep
114
115clean: debian/control
116 dh_testdir
117 dh_testroot
118 dh_clean
119
120 # d-i stuff
121 rm -rf $(DEBIAN)/d-i-$(arch)
122 # Generated on the fly.
123 rm -f $(DEBIAN)/d-i/firmware/$(arch)/kernel-image
124
125 # normal build junk
126 rm -rf $(DEBIAN)/abi/$(release)-$(revision)
127 rm -rf $(builddir)
128 rm -f $(stampdir)/stamp-*
129 rm -rf $(DEBIAN)/linux-*
130
131 # This gets rid of the d-i packages in control
132 cp -f $(DEBIAN)/control.stub $(DROOT)/control
133 cp $(DEBIAN)/changelog debian/changelog
134
135 # Install the copyright information.
136 cp $(DEBIAN)/copyright debian/copyright
137
527d1e11
AW
138 # Install the retpoline extractor.
139 cp $(DROOT)/scripts/retpoline-extract-one scripts/ubuntu-retpoline-extract-one
140
0d34a427
LO
141 # If we have a reconstruct script use it.
142 [ -f $(DEBIAN)/reconstruct ] && bash $(DEBIAN)/reconstruct
143
144 # Remove generated intermediate files
145 rm -f $(DROOT)/control.stub $(DEBIAN)/control.stub
27170546 146 rm -f $(DROOT)/scripts/fix-filenames
0d34a427
LO
147
148distclean: clean
149 rm -rf $(DROOT)/control debian/changelog \
527d1e11
AW
150 debian/control debian/control.stub debian/copyright \
151 scripts/ubuntu-retpoline-extract-one
0d34a427
LO
152
153# Builds the image, arch headers and debug packages
154include $(DROOT)/rules.d/2-binary-arch.mk
155
156# Rules for building the udebs ($(DEBIAN)-installer)
157include $(DROOT)/rules.d/5-udebs.mk
158
159# Builds the source, doc and linux-headers indep packages
160include $(DROOT)/rules.d/3-binary-indep.mk
161
162# Various checks to be performed on builds
163include $(DROOT)/rules.d/4-checks.mk
164
165# Misc stuff
166.PHONY: $(DEBIAN)/control.stub
167$(DEBIAN)/control.stub: \
168 $(DROOT)/scripts/control-create \
169 $(DEBIAN)/control.stub.in \
170 $(DEBIAN)/changelog \
171 $(wildcard $(DEBIAN)/control.d/* $(DEBIAN)/sub-flavours/*.vars)
172 for i in $(DEBIAN)/control.stub.in; do \
173 new=`echo $$i | sed 's/\.in$$//'`; \
174 cat $$i | sed -e 's/PKGVER/$(release)/g' \
175 -e 's/ABINUM/$(abinum)/g' \
176 -e 's/SRCPKGNAME/$(src_pkg_name)/g' \
177 -e 's/=HUMAN=/$(human_arch)/g' \
178 > $$new; \
179 done
180 flavours="$(sort $(wildcard $(DEBIAN)/control.d/vars.* $(DEBIAN)/sub-flavours/*.vars))";\
181 for i in $$flavours; do \
b90b1fe0 182 $(SHELL) $(DROOT)/scripts/control-create $$i "$(any_signed)" | \
0d34a427
LO
183 sed -e 's/PKGVER/$(release)/g' \
184 -e 's/ABINUM/$(abinum)/g' \
185 -e 's/SRCPKGNAME/$(src_pkg_name)/g' \
186 -e 's/=HUMAN=/$(human_arch)/g' \
187 >> $(DEBIAN)/control.stub; \
188 done
189
190.PHONY: debian/control
191debian/control: $(DEBIAN)/control.stub
192 echo "# placebo control.stub for kernel-wedge flow change" >debian/control.stub
193 cp $(DEBIAN)/control.stub debian/control
194 export KW_DEFCONFIG_DIR=$(DEBIAN)/d-i && \
195 export KW_CONFIG_DIR=$(DEBIAN)/d-i && \
196 LANG=C kernel-wedge gen-control $(release)-$(abinum) | \
197 perl -f $(DROOT)/scripts/misc/kernel-wedge-arch.pl $(arch) \
198 >>$(CURDIR)/debian/control