]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - scripts/package/Makefile
Merge tag 'stratix10_fix_for_v5.1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[thirdparty/kernel/stable.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 26KDEB_SOURCENAME ?= linux-$(KERNELRELEASE)
b41d920a 27KBUILD_PKG_ROOTCMD ?="fakeroot -u"
3716001b 28export KDEB_SOURCENAME
6615d6c3 29# Include only those top-level files that are needed by make, plus the GPL copy
26803821 30TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
6615d6c3 31 Kbuild Kconfig COPYING $(wildcard localversion*)
1da177e4 32MKSPEC := $(srctree)/scripts/package/mkspec
1da177e4 33
26803821
RV
34quiet_cmd_src_tar = TAR $(2).tar.gz
35 cmd_src_tar = \
36if test "$(objtree)" != "$(srctree)"; then \
262dad68
MY
37 echo >&2; \
38 echo >&2 " ERROR:"; \
39 echo >&2 " Building source tarball is not possible outside the"; \
40 echo >&2 " kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
41 echo >&2 " binrpm-pkg or bindeb-pkg target instead."; \
42 echo >&2; \
26803821
RV
43 false; \
44fi ; \
45$(srctree)/scripts/setlocalversion --save-scmversion; \
26803821 46tar -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \
2dbc644a
MY
47 --transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
48rm -f $(objtree)/.scmversion
26803821 49
1da177e4 50# rpm-pkg
0131705d 51# ---------------------------------------------------------------------------
ebaad7d3 52rpm-pkg: FORCE
1da177e4 53 $(MAKE) clean
65013203 54 $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
26803821 55 $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
8a16a070
MY
56 +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
57 --define='_smp_mflags %{nil}'
1da177e4
LT
58
59# binrpm-pkg
0131705d 60# ---------------------------------------------------------------------------
65013203 61binrpm-pkg: FORCE
175209cc 62 $(MAKE) -f $(srctree)/Makefile
65013203 63 $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
606625be 64 +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
f66ba560 65 $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
af60e207
MY
66
67clean-files += $(objtree)/*.spec
1da177e4 68
0131705d 69deb-pkg: FORCE
3716001b 70 $(MAKE) clean
b41d920a 71 $(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
3716001b 72 $(call cmd,src_tar,$(KDEB_SOURCENAME))
b41d920a
RV
73 origversion=$$(dpkg-parsechangelog -SVersion |sed 's/-[^-]*$$//');\
74 mv $(KDEB_SOURCENAME).tar.gz ../$(KDEB_SOURCENAME)_$${origversion}.orig.tar.gz
117948ac 75 +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -i.git -us -uc
3716001b
RV
76
77bindeb-pkg: FORCE
b41d920a 78 $(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
117948ac 79 +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -b -nc -uc
b41d920a
RV
80
81intdeb-pkg: FORCE
82 +$(CONFIG_SHELL) $(srctree)/scripts/package/builddeb
1da177e4
LT
83
84clean-dirs += $(objtree)/debian/
85
5704d455
PP
86# snap-pkg
87# ---------------------------------------------------------------------------
88snap-pkg: FORCE
89 rm -rf $(objtree)/snap
90 mkdir $(objtree)/snap
91 $(MAKE) clean
92 $(call cmd,src_tar,$(KERNELPATH))
93 sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
94 s@SRCTREE@$(shell realpath $(KERNELPATH).tar.gz)@" \
95 $(srctree)/scripts/package/snapcraft.template > \
96 $(objtree)/snap/snapcraft.yaml
97 cd $(objtree)/snap && \
98 snapcraft --target-arch=$(UTS_MACHINE)
99
100clean-dirs += $(objtree)/snap/
1da177e4 101
6d983fea
JBG
102# tarball targets
103# ---------------------------------------------------------------------------
0131705d 104tar%pkg: FORCE
175209cc 105 $(MAKE) -f $(srctree)/Makefile
6d983fea
JBG
106 $(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
107
108clean-dirs += $(objtree)/tar-install/
109
110
8e5564e6
ACM
111# 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 = \
3bdccc88 118git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
119 HEAD^{tree} $$(cd $(srctree); \
4b63f603 120 echo $$(cat tools/perf/MANIFEST)) \
3bdccc88 121 -o $(perf-tar).tar; \
8e5564e6 122mkdir -p $(perf-tar); \
3bdccc88 123git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD; \
a614d01b 124(cd $(srctree)/tools/perf; \
4b63f603 125util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/); \
a614d01b 126tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
8e5564e6
ACM
127rm -r $(perf-tar); \
128$(if $(findstring tar-src,$@),, \
129$(if $(findstring bz2,$@),bzip2, \
130$(if $(findstring gz,$@),gzip, \
9a17f400
ZK
131$(if $(findstring xz,$@),xz, \
132$(error unknown target $@)))) \
8e5564e6
ACM
133 -f -9 $(perf-tar).tar)
134
135perf-%pkg: FORCE
136 $(call cmd,perf_tar)
137
1da177e4
LT
138# Help text displayed when executing 'make help'
139# ---------------------------------------------------------------------------
0131705d 140help: FORCE
8e5564e6 141 @echo ' rpm-pkg - Build both source and binary RPM kernel packages'
3716001b
RV
142 @echo ' binrpm-pkg - Build only the binary kernel RPM package'
143 @echo ' deb-pkg - Build both source and binary deb kernel packages'
144 @echo ' bindeb-pkg - Build only the binary kernel deb package'
5704d455 145 @echo ' snap-pkg - Build only the binary kernel snap package (will connect to external hosts)'
8e5564e6
ACM
146 @echo ' tar-pkg - Build the kernel as an uncompressed tarball'
147 @echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
148 @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
9a17f400 149 @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
8e5564e6
ACM
150 @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
151 @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
152 @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
9a17f400 153 @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'