blob: 77b612183c082a958ac35eca5008b28aef16f127 [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
Masahiro Yamada000ec952019-08-21 16:02:04 +09003
4include $(srctree)/scripts/Kbuild.include
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006# RPM target
7# ---------------------------------------------------------------------------
8# The rpm target generates two rpm files:
9# /usr/src/packages/SRPMS/kernel-2.6.7rc2-1.src.rpm
10# /usr/src/packages/RPMS/i386/kernel-2.6.7rc2-1.<arch>.rpm
11# The src.rpm files includes all source for the kernel being built
12# The <arch>.rpm includes kernel configuration, modules etc.
13#
14# Process to create the rpm files
15# a) clean the kernel
16# b) Generate .spec file
17# c) Build a tar ball, using symlink to make kernel version
18# first entry in the path
19# d) and pack the result to a tar.gz file
20# e) generate the rpm files, based on kernel.spec
21# - Use /. to avoid tar packing just the symlink
22
Frans Popdb9038c2009-08-25 22:15:39 +020023# Note that the rpm-pkg target cannot be used with KBUILD_OUTPUT,
24# but the binrpm-pkg target can; for some reason O= gets ignored.
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026# Remove hyphens since they have special meaning in RPM filenames
Arun Sharmae1287eb2011-05-04 13:48:11 -070027KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
Masahiro Yamada82526ef2021-04-20 02:05:05 +090028KDEB_SOURCENAME ?= linux-upstream
Riku Voipiob41d9202018-04-05 14:22:29 +030029KBUILD_PKG_ROOTCMD ?="fakeroot -u"
Riku Voipio37160012015-09-02 12:57:24 +030030export KDEB_SOURCENAME
Michal Marek6615d6c2013-04-12 14:12:50 +020031# Include only those top-level files that are needed by make, plus the GPL copy
Riku Voipio26803822015-09-02 12:57:08 +030032TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
Michal Marek6615d6c2013-04-12 14:12:50 +020033 Kbuild Kconfig COPYING $(wildcard localversion*)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034MKSPEC := $(srctree)/scripts/package/mkspec
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Riku Voipio26803822015-09-02 12:57:08 +030036quiet_cmd_src_tar = TAR $(2).tar.gz
37 cmd_src_tar = \
38if test "$(objtree)" != "$(srctree)"; then \
Masahiro Yamada262dad62017-12-06 19:32:57 +090039 echo >&2; \
40 echo >&2 " ERROR:"; \
41 echo >&2 " Building source tarball is not possible outside the"; \
42 echo >&2 " kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
43 echo >&2 " binrpm-pkg or bindeb-pkg target instead."; \
44 echo >&2; \
Riku Voipio26803822015-09-02 12:57:08 +030045 false; \
46fi ; \
47$(srctree)/scripts/setlocalversion --save-scmversion; \
Denis Efremove4a42c82020-06-08 12:59:44 +030048tar -I $(KGZIP) -c $(RCS_TAR_IGNORE) -f $(2).tar.gz \
Masahiro Yamada2dbc6442017-11-15 18:17:07 +090049 --transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
50rm -f $(objtree)/.scmversion
Riku Voipio26803822015-09-02 12:57:08 +030051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052# rpm-pkg
Sam Ravnborg01317052006-03-08 18:39:05 +010053# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090054PHONY += rpm-pkg
55rpm-pkg:
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 $(MAKE) clean
Michal Marek65013202013-04-13 21:21:15 +020057 $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
Riku Voipio26803822015-09-02 12:57:08 +030058 $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
Masahiro Yamada8a16a072017-09-30 10:10:11 +090059 +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
60 --define='_smp_mflags %{nil}'
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62# binrpm-pkg
Sam Ravnborg01317052006-03-08 18:39:05 +010063# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090064PHONY += binrpm-pkg
65binrpm-pkg:
Masahiro Yamada175209c2019-02-14 12:05:14 +090066 $(MAKE) -f $(srctree)/Makefile
Michal Marek65013202013-04-13 21:21:15 +020067 $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
Masahiro Yamada606625b2017-09-30 10:10:09 +090068 +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
Luiz Capitulinof66ba562013-05-15 12:06:26 -040069 $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
Masahiro Yamadaaf60e202017-09-30 10:10:10 +090070
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090071PHONY += deb-pkg
72deb-pkg:
Riku Voipio37160012015-09-02 12:57:24 +030073 $(MAKE) clean
Riku Voipiob41d9202018-04-05 14:22:29 +030074 $(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
Riku Voipio37160012015-09-02 12:57:24 +030075 $(call cmd,src_tar,$(KDEB_SOURCENAME))
Riku Voipiob41d9202018-04-05 14:22:29 +030076 origversion=$$(dpkg-parsechangelog -SVersion |sed 's/-[^-]*$$//');\
77 mv $(KDEB_SOURCENAME).tar.gz ../$(KDEB_SOURCENAME)_$${origversion}.orig.tar.gz
Kacper Kołodziej117948a2019-02-05 13:37:52 +010078 +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -i.git -us -uc
Riku Voipio37160012015-09-02 12:57:24 +030079
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090080PHONY += bindeb-pkg
81bindeb-pkg:
Riku Voipiob41d9202018-04-05 14:22:29 +030082 $(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
Kacper Kołodziej117948a2019-02-05 13:37:52 +010083 +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -b -nc -uc
Riku Voipiob41d9202018-04-05 14:22:29 +030084
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090085PHONY += intdeb-pkg
86intdeb-pkg:
Riku Voipiob41d9202018-04-05 14:22:29 +030087 +$(CONFIG_SHELL) $(srctree)/scripts/package/builddeb
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Paolo Pisati5704d452017-11-27 12:07:34 +010089# snap-pkg
90# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +090091PHONY += snap-pkg
92snap-pkg:
Paolo Pisati5704d452017-11-27 12:07:34 +010093 rm -rf $(objtree)/snap
94 mkdir $(objtree)/snap
95 $(MAKE) clean
96 $(call cmd,src_tar,$(KERNELPATH))
97 sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
98 s@SRCTREE@$(shell realpath $(KERNELPATH).tar.gz)@" \
99 $(srctree)/scripts/package/snapcraft.template > \
100 $(objtree)/snap/snapcraft.yaml
101 cd $(objtree)/snap && \
102 snapcraft --target-arch=$(UTS_MACHINE)
103
Jan-Benedict Glaw6d983fe2005-05-24 11:27:37 +0200104# tarball targets
105# ---------------------------------------------------------------------------
Paweł Jasiak88f5e1e2021-10-08 13:37:59 +0200106tar-pkgs := dir-pkg tar-pkg targz-pkg tarbz2-pkg tarxz-pkg tarzst-pkg
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +0900107PHONY += $(tar-pkgs)
108$(tar-pkgs):
Masahiro Yamada175209c2019-02-14 12:05:14 +0900109 $(MAKE) -f $(srctree)/Makefile
Trevor Bourgeta6e04872019-05-27 16:54:23 -0700110 +$(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
Jan-Benedict Glaw6d983fe2005-05-24 11:27:37 +0200111
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300112# perf-pkg - generate a source tarball with perf source
113# ---------------------------------------------------------------------------
114
115perf-tar=perf-$(KERNELVERSION)
116
117quiet_cmd_perf_tar = TAR
118 cmd_perf_tar = \
matt mooney3bdccc82011-05-13 16:41:12 -0700119git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
120 HEAD^{tree} $$(cd $(srctree); \
Riku Voipio4b63f602015-09-01 17:14:21 +0300121 echo $$(cat tools/perf/MANIFEST)) \
matt mooney3bdccc82011-05-13 16:41:12 -0700122 -o $(perf-tar).tar; \
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300123mkdir -p $(perf-tar); \
matt mooney3bdccc82011-05-13 16:41:12 -0700124git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD; \
David Aherna614d012013-11-06 08:55:35 -0700125(cd $(srctree)/tools/perf; \
Riku Voipio4b63f602015-09-01 17:14:21 +0300126util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/); \
David Aherna614d012013-11-06 08:55:35 -0700127tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300128rm -r $(perf-tar); \
129$(if $(findstring tar-src,$@),, \
Denis Efremove4a42c82020-06-08 12:59:44 +0300130$(if $(findstring bz2,$@),$(KBZIP2), \
131$(if $(findstring gz,$@),$(KGZIP), \
Denis Efremov8dfb61d2020-06-05 10:39:55 +0300132$(if $(findstring xz,$@),$(XZ), \
Paweł Jasiak88f5e1e2021-10-08 13:37:59 +0200133$(if $(findstring zst,$@),$(ZSTD), \
134$(error unknown target $@))))) \
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300135 -f -9 $(perf-tar).tar)
136
Paweł Jasiak88f5e1e2021-10-08 13:37:59 +0200137perf-tar-pkgs := perf-tar-src-pkg perf-targz-src-pkg perf-tarbz2-src-pkg \
138 perf-tarxz-src-pkg perf-tarzst-src-pkg
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +0900139PHONY += $(perf-tar-pkgs)
140$(perf-tar-pkgs):
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300141 $(call cmd,perf_tar)
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143# Help text displayed when executing 'make help'
144# ---------------------------------------------------------------------------
Masahiro Yamada6a4f6a22019-08-21 16:02:03 +0900145PHONY += help
146help:
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300147 @echo ' rpm-pkg - Build both source and binary RPM kernel packages'
Riku Voipio37160012015-09-02 12:57:24 +0300148 @echo ' binrpm-pkg - Build only the binary kernel RPM package'
149 @echo ' deb-pkg - Build both source and binary deb kernel packages'
150 @echo ' bindeb-pkg - Build only the binary kernel deb package'
Geert Uytterhoevena64c0442019-10-25 13:52:32 +0200151 @echo ' snap-pkg - Build only the binary kernel snap package'
152 @echo ' (will connect to external hosts)'
Matteo Croceaf7db992019-11-04 14:11:44 +0100153 @echo ' dir-pkg - Build the kernel as a plain directory structure'
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300154 @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'
Zdenek Kaspar9a17f402011-01-30 12:18:51 +0100157 @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
Paweł Jasiak88f5e1e2021-10-08 13:37:59 +0200158 @echo ' tarzst-pkg - Build the kernel as a zstd compressed tarball'
Arnaldo Carvalho de Melo8e5564e2010-05-31 11:13:21 -0300159 @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
160 @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
161 @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
Zdenek Kaspar9a17f402011-01-30 12:18:51 +0100162 @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'
Paweł Jasiak88f5e1e2021-10-08 13:37:59 +0200163 @echo ' perf-tarzst-src-pkg - Build $(perf-tar).tar.zst source tarball'
Masahiro Yamada000ec952019-08-21 16:02:04 +0900164
165.PHONY: $(PHONY)