Makefile.package 6.6 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0-only
L
Linus Torvalds 已提交
2
# Makefile for the different targets used to generate full packages of a kernel
3 4

include $(srctree)/scripts/Kbuild.include
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

# RPM target
# ---------------------------------------------------------------------------
# The rpm target generates two rpm files:
# /usr/src/packages/SRPMS/kernel-2.6.7rc2-1.src.rpm
# /usr/src/packages/RPMS/i386/kernel-2.6.7rc2-1.<arch>.rpm
# The src.rpm files includes all source for the kernel being built
# The <arch>.rpm includes kernel configuration, modules etc.
#
# Process to create the rpm files
# a) clean the kernel
# b) Generate .spec file
# c) Build a tar ball, using symlink to make kernel version
#    first entry in the path
# d) and pack the result to a tar.gz file
# e) generate the rpm files, based on kernel.spec
# - Use /. to avoid tar packing just the symlink

23 24 25
# Note that the rpm-pkg target cannot be used with KBUILD_OUTPUT,
# but the binrpm-pkg target can; for some reason O= gets ignored.

L
Linus Torvalds 已提交
26
# Remove hyphens since they have special meaning in RPM filenames
27
KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
R
Riku Voipio 已提交
28
KDEB_SOURCENAME ?= linux-$(KERNELRELEASE)
29
KBUILD_PKG_ROOTCMD ?="fakeroot -u"
R
Riku Voipio 已提交
30
export KDEB_SOURCENAME
31
# Include only those top-level files that are needed by make, plus the GPL copy
32
TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
33
               Kbuild Kconfig COPYING $(wildcard localversion*)
L
Linus Torvalds 已提交
34 35
MKSPEC     := $(srctree)/scripts/package/mkspec

36 37 38
quiet_cmd_src_tar = TAR     $(2).tar.gz
      cmd_src_tar = \
if test "$(objtree)" != "$(srctree)"; then \
39 40 41 42 43 44
	echo >&2; \
	echo >&2 "  ERROR:"; \
	echo >&2 "  Building source tarball is not possible outside the"; \
	echo >&2 "  kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
	echo >&2 "  binrpm-pkg or bindeb-pkg target instead."; \
	echo >&2; \
45 46 47
	false; \
fi ; \
$(srctree)/scripts/setlocalversion --save-scmversion; \
48
tar -I $(_GZIP) -c $(RCS_TAR_IGNORE) -f $(2).tar.gz \
49 50
	--transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
rm -f $(objtree)/.scmversion
51

L
Linus Torvalds 已提交
52
# rpm-pkg
S
Sam Ravnborg 已提交
53
# ---------------------------------------------------------------------------
54 55
PHONY += rpm-pkg
rpm-pkg:
L
Linus Torvalds 已提交
56
	$(MAKE) clean
57
	$(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
58
	$(call cmd,src_tar,$(KERNELPATH),kernel.spec)
59 60
	+rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
	--define='_smp_mflags %{nil}'
L
Linus Torvalds 已提交
61 62

# binrpm-pkg
S
Sam Ravnborg 已提交
63
# ---------------------------------------------------------------------------
64 65
PHONY += binrpm-pkg
binrpm-pkg:
66
	$(MAKE) -f $(srctree)/Makefile
67
	$(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
68
	+rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
69
		$(UTS_MACHINE) -bb $(objtree)/binkernel.spec
70

71 72
PHONY += deb-pkg
deb-pkg:
R
Riku Voipio 已提交
73
	$(MAKE) clean
74
	$(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
R
Riku Voipio 已提交
75
	$(call cmd,src_tar,$(KDEB_SOURCENAME))
76 77
	origversion=$$(dpkg-parsechangelog -SVersion |sed 's/-[^-]*$$//');\
		mv $(KDEB_SOURCENAME).tar.gz ../$(KDEB_SOURCENAME)_$${origversion}.orig.tar.gz
78
	+dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -i.git -us -uc
R
Riku Voipio 已提交
79

80 81
PHONY += bindeb-pkg
bindeb-pkg:
82
	$(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian
83
	+dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -b -nc -uc
84

85 86
PHONY += intdeb-pkg
intdeb-pkg:
87
	+$(CONFIG_SHELL) $(srctree)/scripts/package/builddeb
L
Linus Torvalds 已提交
88

P
Paolo Pisati 已提交
89 90
# snap-pkg
# ---------------------------------------------------------------------------
91 92
PHONY += snap-pkg
snap-pkg:
P
Paolo Pisati 已提交
93 94 95 96 97 98 99 100 101 102 103
	rm -rf $(objtree)/snap
	mkdir $(objtree)/snap
	$(MAKE) clean
	$(call cmd,src_tar,$(KERNELPATH))
	sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
		s@SRCTREE@$(shell realpath $(KERNELPATH).tar.gz)@" \
		$(srctree)/scripts/package/snapcraft.template > \
		$(objtree)/snap/snapcraft.yaml
	cd $(objtree)/snap && \
	snapcraft --target-arch=$(UTS_MACHINE)

104 105
# tarball targets
# ---------------------------------------------------------------------------
106
tar-pkgs := dir-pkg tar-pkg targz-pkg tarbz2-pkg tarxz-pkg
107 108
PHONY += $(tar-pkgs)
$(tar-pkgs):
109
	$(MAKE) -f $(srctree)/Makefile
110
	+$(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
111

112 113 114 115 116 117 118
# perf-pkg - generate a source tarball with perf source
# ---------------------------------------------------------------------------

perf-tar=perf-$(KERNELVERSION)

quiet_cmd_perf_tar = TAR
      cmd_perf_tar = \
119 120
git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/         \
	HEAD^{tree} $$(cd $(srctree);                               \
121
		       echo $$(cat tools/perf/MANIFEST)) \
122
	-o $(perf-tar).tar;                                         \
123
mkdir -p $(perf-tar);                                               \
124
git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD;    \
125
(cd $(srctree)/tools/perf;                                          \
126
util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/);              \
127
tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
128 129
rm -r $(perf-tar);                                                  \
$(if $(findstring tar-src,$@),,                                     \
130 131 132
$(if $(findstring bz2,$@),$(_BZIP2),                                 \
$(if $(findstring gz,$@),$(_GZIP),                                  \
$(if $(findstring xz,$@),$(XZ),                                     \
133
$(error unknown target $@))))                                       \
134 135
	-f -9 $(perf-tar).tar)

136 137 138
perf-tar-pkgs := perf-tar-src-pkg perf-targz-src-pkg perf-tarbz2-src-pkg perf-tarxz-src-pkg
PHONY += $(perf-tar-pkgs)
$(perf-tar-pkgs):
139 140
	$(call cmd,perf_tar)

L
Linus Torvalds 已提交
141 142
# Help text displayed when executing 'make help'
# ---------------------------------------------------------------------------
143 144
PHONY += help
help:
145
	@echo '  rpm-pkg             - Build both source and binary RPM kernel packages'
R
Riku Voipio 已提交
146 147 148
	@echo '  binrpm-pkg          - Build only the binary kernel RPM package'
	@echo '  deb-pkg             - Build both source and binary deb kernel packages'
	@echo '  bindeb-pkg          - Build only the binary kernel deb package'
149 150
	@echo '  snap-pkg            - Build only the binary kernel snap package'
	@echo '                        (will connect to external hosts)'
151
	@echo '  dir-pkg             - Build the kernel as a plain directory structure'
152 153 154
	@echo '  tar-pkg             - Build the kernel as an uncompressed tarball'
	@echo '  targz-pkg           - Build the kernel as a gzip compressed tarball'
	@echo '  tarbz2-pkg          - Build the kernel as a bzip2 compressed tarball'
155
	@echo '  tarxz-pkg           - Build the kernel as a xz compressed tarball'
156 157 158
	@echo '  perf-tar-src-pkg    - Build $(perf-tar).tar source tarball'
	@echo '  perf-targz-src-pkg  - Build $(perf-tar).tar.gz source tarball'
	@echo '  perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
159
	@echo '  perf-tarxz-src-pkg  - Build $(perf-tar).tar.xz source tarball'
160 161

.PHONY: $(PHONY)