blob: 407189d9942a02f9e2ed89b4caefdd3439b0b55f [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002# Makefile for the different targets used to generate full packages of a kernel
3# It uses the generic clean infrastructure of kbuild
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005# RPM target
6# ---------------------------------------------------------------------------
7# The rpm target generates two rpm files:
8# /usr/src/packages/SRPMS/kernel-2.6.7rc2-1.src.rpm
9# /usr/src/packages/RPMS/i386/kernel-2.6.7rc2-1.<arch>.rpm
10# The src.rpm files includes all source for the kernel being built
11# The <arch>.rpm includes kernel configuration, modules etc.
12#
13# Process to create the rpm files
14# a) clean the kernel
15# b) Generate .spec file
16# c) Build a tar ball, using symlink to make kernel version
17# first entry in the path
18# d) and pack the result to a tar.gz file
19# e) generate the rpm files, based on kernel.spec
20# - Use /. to avoid tar packing just the symlink
21
Frans Popdb9038c2009-08-25 22:15:39 +020022# Note that the rpm-pkg target cannot be used with KBUILD_OUTPUT,
23# but the binrpm-pkg target can; for some reason O= gets ignored.
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025# Remove hyphens since they have special meaning in RPM filenames
Arun Sharmae1287eb2011-05-04 13:48:11 -070026KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
Riku Voipio37160012015-09-02 12:57:24 +030027KDEB_SOURCENAME ?= linux-$(KERNELRELEASE)
Riku Voipiob41d9202018-04-05 14:22:29 +030028KBUILD_PKG_ROOTCMD ?="fakeroot -u"
Riku Voipio37160012015-09-02 12:57:24 +030029export KDEB_SOURCENAME
Michal Marek6615d6c2013-04-12 14:12:50 +020030# Include only those top-level files that are needed by make, plus the GPL copy
Riku Voipio26803822015-09-02 12:57:08 +030031TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
Michal Marek6615d6c2013-04-12 14:12:50 +020032 Kbuild Kconfig COPYING $(wildcard localversion*)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033MKSPEC := $(srctree)/scripts/package/mkspec
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Riku Voipio26803822015-09-02 12:57:08 +030035quiet_cmd_src_tar = TAR $(2).tar.gz
36 cmd_src_tar = \
37if test "$(objtree)" != "$(srctree)"; then \
Masahiro Yamada262dad62017-12-06 19:32:57 +090038 echo >&2; \
39 echo >&2 " ERROR:"; \
40 echo >&2 " Building source tarball is not possible outside the"; \
41 echo >&2 " kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
42 echo >&2 " binrpm-pkg or bindeb-pkg target instead."; \
43 echo >&2; \
Riku Voipio26803822015-09-02 12:57:08 +030044 false; \
45fi ; \
46$(srctree)/scripts/setlocalversion --save-scmversion; \
Riku Voipio26803822015-09-02 12:57:08 +030047tar -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \
Masahiro Yamada2dbc6442017-11-15 18:17:07 +090048 --transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
49rm -f $(objtree)/.scmversion
Riku Voipio26803822015-09-02 12:57:08 +030050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051# rpm-pkg
Sam Ravnborg01317052006-03-08 18:39:05 +010052# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090053PHONY += rpm-pkg
54rpm-pkg:
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 $(MAKE) clean
Michal Marek65013202013-04-13 21:21:15 +020056 $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
Riku Voipio26803822015-09-02 12:57:08 +030057 $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
Masahiro Yamada8a16a072017-09-30 10:10:11 +090058 +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
59 --define='_smp_mflags %{nil}'
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61# binrpm-pkg
Sam Ravnborg01317052006-03-08 18:39:05 +010062# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090063PHONY += binrpm-pkg
64binrpm-pkg:
Masahiro Yamada175209c2019-02-14 12:05:14 +090065 $(MAKE) -f $(srctree)/Makefile
Michal Marek65013202013-04-13 21:21:15 +020066 $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
Masahiro Yamada606625b2017-09-30 10:10:09 +090067 +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
Luiz Capitulinof66ba562013-05-15 12:06:26 -040068 $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
Masahiro Yamadaaf60e202017-09-30 10:10:10 +090069
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090070PHONY += deb-pkg
71deb-pkg:
Riku Voipio37160012015-09-02 12:57:24 +030072 $(MAKE) clean
Riku Voipiob41d9202018-04-05 14:22:29 +030073 $(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
Riku Voipio37160012015-09-02 12:57:24 +030074 $(call cmd,src_tar,$(KDEB_SOURCENAME))
Riku Voipiob41d9202018-04-05 14:22:29 +030075 origversion=$$(dpkg-parsechangelog -SVersion |sed 's/-[^-]*$$//');\
76 mv $(KDEB_SOURCENAME).tar.gz ../$(KDEB_SOURCENAME)_$${origversion}.orig.tar.gz
Kacper Kołodziej117948a2019-02-05 13:37:52 +010077 +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -i.git -us -uc
Riku Voipio37160012015-09-02 12:57:24 +030078
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090079PHONY += bindeb-pkg
80bindeb-pkg:
Riku Voipiob41d9202018-04-05 14:22:29 +030081 $(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
Kacper Kołodziej117948a2019-02-05 13:37:52 +010082 +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -b -nc -uc
Riku Voipiob41d9202018-04-05 14:22:29 +030083
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090084PHONY += intdeb-pkg
85intdeb-pkg:
Riku Voipiob41d9202018-04-05 14:22:29 +030086 +$(CONFIG_SHELL) $(srctree)/scripts/package/builddeb
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Paolo Pisati5704d452017-11-27 12:07:34 +010088# snap-pkg
89# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090090PHONY += snap-pkg
91snap-pkg:
Paolo Pisati5704d452017-11-27 12:07:34 +010092 rm -rf $(objtree)/snap
93 mkdir $(objtree)/snap
94 $(MAKE) clean
95 $(call cmd,src_tar,$(KERNELPATH))
96 sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
97 s@SRCTREE@$(shell realpath $(KERNELPATH).tar.gz)@" \
98 $(srctree)/scripts/package/snapcraft.template > \
99 $(objtree)/snap/snapcraft.yaml
100 cd $(objtree)/snap && \
101 snapcraft --target-arch=$(UTS_MACHINE)
102
Jan-Benedict Glaw6d983fe2005-05-24 11:27:37 +0200103# tarball targets
104# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +0900105tar-pkgs := tar-pkg targz-pkg tarbz2-pkg tarxz-pkg
106PHONY += $(tar-pkgs)
107$(tar-pkgs):
Masahiro Yamada175209c2019-02-14 12:05:14 +0900108 $(MAKE) -f $(srctree)/Makefile
Trevor Bourgeta6e04872019-05-27 16:54:23 -0700109 +$(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
Jan-Benedict Glaw6d983fe2005-05-24 11:27:37 +0200110
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300111# perf-pkg - generate a source tarball with perf source
112# ---------------------------------------------------------------------------
113
114perf-tar=perf-$(KERNELVERSION)
115
116quiet_cmd_perf_tar = TAR
117 cmd_perf_tar = \
matt mooney3bdccc82011-05-13 16:41:12 -0700118git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
119 HEAD^{tree} $$(cd $(srctree); \
Riku Voipio4b63f602015-09-01 17:14:21 +0300120 echo $$(cat tools/perf/MANIFEST)) \
matt mooney3bdccc82011-05-13 16:41:12 -0700121 -o $(perf-tar).tar; \
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300122mkdir -p $(perf-tar); \
matt mooney3bdccc82011-05-13 16:41:12 -0700123git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD; \
David Aherna614d012013-11-06 08:55:35 -0700124(cd $(srctree)/tools/perf; \
Riku Voipio4b63f602015-09-01 17:14:21 +0300125util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/); \
David Aherna614d012013-11-06 08:55:35 -0700126tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300127rm -r $(perf-tar); \
128$(if $(findstring tar-src,$@),, \
129$(if $(findstring bz2,$@),bzip2, \
130$(if $(findstring gz,$@),gzip, \
Zdenek Kaspar9a17f402011-01-30 12:18:51 +0100131$(if $(findstring xz,$@),xz, \
132$(error unknown target $@)))) \
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300133 -f -9 $(perf-tar).tar)
134
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +0900135perf-tar-pkgs := perf-tar-src-pkg perf-targz-src-pkg perf-tarbz2-src-pkg perf-tarxz-src-pkg
136PHONY += $(perf-tar-pkgs)
137$(perf-tar-pkgs):
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300138 $(call cmd,perf_tar)
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140# Help text displayed when executing 'make help'
141# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +0900142PHONY += help
143help:
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300144 @echo ' rpm-pkg - Build both source and binary RPM kernel packages'
Riku Voipio37160012015-09-02 12:57:24 +0300145 @echo ' binrpm-pkg - Build only the binary kernel RPM package'
146 @echo ' deb-pkg - Build both source and binary deb kernel packages'
147 @echo ' bindeb-pkg - Build only the binary kernel deb package'
Paolo Pisati5704d452017-11-27 12:07:34 +0100148 @echo ' snap-pkg - Build only the binary kernel snap package (will connect to external hosts)'
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300149 @echo ' tar-pkg - Build the kernel as an uncompressed tarball'
150 @echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
151 @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
Zdenek Kaspar9a17f402011-01-30 12:18:51 +0100152 @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300153 @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
154 @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
155 @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
Zdenek Kaspar9a17f402011-01-30 12:18:51 +0100156 @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'