]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - scripts/package/Makefile
make snap-pkg support
[mirror_ubuntu-bionic-kernel.git] / scripts / package / Makefile
CommitLineData
1da177e4
LT
1# Makefile for the different targets used to generate full packages of a kernel
2# It uses the generic clean infrastructure of kbuild
3
1da177e4
LT
4# RPM target
5# ---------------------------------------------------------------------------
6# The rpm target generates two rpm files:
7# /usr/src/packages/SRPMS/kernel-2.6.7rc2-1.src.rpm
8# /usr/src/packages/RPMS/i386/kernel-2.6.7rc2-1.<arch>.rpm
9# The src.rpm files includes all source for the kernel being built
10# The <arch>.rpm includes kernel configuration, modules etc.
11#
12# Process to create the rpm files
13# a) clean the kernel
14# b) Generate .spec file
15# c) Build a tar ball, using symlink to make kernel version
16# first entry in the path
17# d) and pack the result to a tar.gz file
18# e) generate the rpm files, based on kernel.spec
19# - Use /. to avoid tar packing just the symlink
20
db9038c8
FP
21# Note that the rpm-pkg target cannot be used with KBUILD_OUTPUT,
22# but the binrpm-pkg target can; for some reason O= gets ignored.
23
1da177e4 24# Remove hyphens since they have special meaning in RPM filenames
e1287eb8 25KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
3716001b
RV
26KDEB_SOURCENAME ?= linux-$(KERNELRELEASE)
27export KDEB_SOURCENAME
6615d6c3 28# Include only those top-level files that are needed by make, plus the GPL copy
26803821 29TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
6615d6c3 30 Kbuild Kconfig COPYING $(wildcard localversion*)
1da177e4 31MKSPEC := $(srctree)/scripts/package/mkspec
1da177e4 32
26803821
RV
33quiet_cmd_src_tar = TAR $(2).tar.gz
34 cmd_src_tar = \
35if test "$(objtree)" != "$(srctree)"; then \
36 echo "Building source tarball is not possible outside the"; \
37 echo "kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
38 echo "binrpm-pkg or bindeb-pkg target instead."; \
39 false; \
40fi ; \
41$(srctree)/scripts/setlocalversion --save-scmversion; \
26803821 42tar -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \
2dbc644a
MY
43 --transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
44rm -f $(objtree)/.scmversion
26803821 45
1da177e4 46# rpm-pkg
0131705d 47# ---------------------------------------------------------------------------
ebaad7d3 48rpm-pkg: FORCE
1da177e4 49 $(MAKE) clean
65013203 50 $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
26803821 51 $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
8a16a070
MY
52 +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
53 --define='_smp_mflags %{nil}'
1da177e4
LT
54
55# binrpm-pkg
0131705d 56# ---------------------------------------------------------------------------
65013203 57binrpm-pkg: FORCE
a91f98a2 58 $(MAKE) KBUILD_SRC=
65013203 59 $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
606625be 60 +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
f66ba560 61 $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
af60e207
MY
62
63clean-files += $(objtree)/*.spec
1da177e4
LT
64
65# Deb target
66# ---------------------------------------------------------------------------
db1d1865
JN
67quiet_cmd_builddeb = BUILDDEB
68 cmd_builddeb = set -e; \
69 test `id -u` = 0 || \
70 test -n "$(KBUILD_PKG_ROOTCMD)" || { \
71 which fakeroot >/dev/null 2>&1 && \
72 KBUILD_PKG_ROOTCMD="fakeroot -u"; \
73 } || { \
74 echo; \
75 echo "builddeb must be run as root (or using fakeroot)."; \
76 echo "KBUILD_PKG_ROOTCMD is unset and fakeroot not found."; \
77 echo "Try setting KBUILD_PKG_ROOTCMD to a command to acquire"; \
78 echo "root privileges (e.g., 'fakeroot -u' or 'sudo')."; \
79 false; \
80 } && \
81 \
82 $$KBUILD_PKG_ROOTCMD $(CONFIG_SHELL) \
3716001b 83 $(srctree)/scripts/package/builddeb $@
db1d1865 84
0131705d 85deb-pkg: FORCE
3716001b
RV
86 $(MAKE) clean
87 $(call cmd,src_tar,$(KDEB_SOURCENAME))
88 $(MAKE) KBUILD_SRC=
89 +$(call cmd,builddeb)
90
91bindeb-pkg: FORCE
a91f98a2 92 $(MAKE) KBUILD_SRC=
3716001b 93 +$(call cmd,builddeb)
1da177e4
LT
94
95clean-dirs += $(objtree)/debian/
96
b3f38f3b
PP
97# snap-pkg
98# ---------------------------------------------------------------------------
99snap-pkg: FORCE
100 rm -rf $(objtree)/snap
101 mkdir $(objtree)/snap
102 sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
103 s@SRCTREE@$(shell realpath $(srctree))@" \
104 $(srctree)/scripts/package/snapcraft.template > \
105 $(objtree)/snap/snapcraft.yaml
106 cd $(objtree)/snap && \
107 snapcraft --target-arch=$(UTS_MACHINE)
108
109clean-dirs += $(objtree)/snap/
1da177e4 110
6d983fea
JBG
111# tarball targets
112# ---------------------------------------------------------------------------
0131705d 113tar%pkg: FORCE
6073aa64 114 $(MAKE) KBUILD_SRC=
6d983fea
JBG
115 $(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
116
117clean-dirs += $(objtree)/tar-install/
118
119
8e5564e6
ACM
120# perf-pkg - generate a source tarball with perf source
121# ---------------------------------------------------------------------------
122
123perf-tar=perf-$(KERNELVERSION)
124
125quiet_cmd_perf_tar = TAR
126 cmd_perf_tar = \
3bdccc88 127git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
128 HEAD^{tree} $$(cd $(srctree); \
4b63f603 129 echo $$(cat tools/perf/MANIFEST)) \
3bdccc88 130 -o $(perf-tar).tar; \
8e5564e6 131mkdir -p $(perf-tar); \
3bdccc88 132git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD; \
a614d01b 133(cd $(srctree)/tools/perf; \
4b63f603 134util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/); \
a614d01b 135tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
8e5564e6
ACM
136rm -r $(perf-tar); \
137$(if $(findstring tar-src,$@),, \
138$(if $(findstring bz2,$@),bzip2, \
139$(if $(findstring gz,$@),gzip, \
9a17f400
ZK
140$(if $(findstring xz,$@),xz, \
141$(error unknown target $@)))) \
8e5564e6
ACM
142 -f -9 $(perf-tar).tar)
143
144perf-%pkg: FORCE
145 $(call cmd,perf_tar)
146
1da177e4
LT
147# Help text displayed when executing 'make help'
148# ---------------------------------------------------------------------------
0131705d 149help: FORCE
8e5564e6 150 @echo ' rpm-pkg - Build both source and binary RPM kernel packages'
3716001b
RV
151 @echo ' binrpm-pkg - Build only the binary kernel RPM package'
152 @echo ' deb-pkg - Build both source and binary deb kernel packages'
153 @echo ' bindeb-pkg - Build only the binary kernel deb package'
8e5564e6
ACM
154 @echo ' tar-pkg - Build the kernel as an uncompressed tarball'
155 @echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
156 @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
9a17f400 157 @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
8e5564e6
ACM
158 @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
159 @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
160 @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
9a17f400 161 @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'