Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / scripts / package / Makefile
blob9fbcf5ed0ca778e1713fff945c9f211488d47a86
1 # Makefile for the different targets used to generate full packages of a kernel
2 # It uses the generic clean infrastructure of kbuild
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.
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
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.
24 # Remove hyphens since they have special meaning in RPM filenames
25 KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
26 KDEB_SOURCENAME ?= linux-$(KERNELRELEASE)
27 export KDEB_SOURCENAME
28 # Include only those top-level files that are needed by make, plus the GPL copy
29 TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
30 Kbuild Kconfig COPYING $(wildcard localversion*)
31 MKSPEC := $(srctree)/scripts/package/mkspec
33 quiet_cmd_src_tar = TAR $(2).tar.gz
34 cmd_src_tar = \
35 set -e; \
36 if test "$(objtree)" != "$(srctree)"; then \
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; \
43 false; \
44 fi ; \
45 $(srctree)/scripts/setlocalversion --save-scmversion; \
46 tar -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \
47 --transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
48 rm -f $(objtree)/.scmversion
50 # rpm-pkg
51 # ---------------------------------------------------------------------------
52 rpm-pkg: FORCE
53 $(MAKE) clean
54 $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
55 $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
56 +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
57 --define='_smp_mflags %{nil}'
59 # binrpm-pkg
60 # ---------------------------------------------------------------------------
61 binrpm-pkg: FORCE
62 $(MAKE) KBUILD_SRC=
63 $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
64 +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
65 $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
67 clean-files += $(objtree)/*.spec
69 # Deb target
70 # ---------------------------------------------------------------------------
71 quiet_cmd_builddeb = BUILDDEB
72 cmd_builddeb = set -e; \
73 test `id -u` = 0 || \
74 test -n "$(KBUILD_PKG_ROOTCMD)" || { \
75 which fakeroot >/dev/null 2>&1 && \
76 KBUILD_PKG_ROOTCMD="fakeroot -u"; \
77 } || { \
78 echo; \
79 echo "builddeb must be run as root (or using fakeroot)."; \
80 echo "KBUILD_PKG_ROOTCMD is unset and fakeroot not found."; \
81 echo "Try setting KBUILD_PKG_ROOTCMD to a command to acquire"; \
82 echo "root privileges (e.g., 'fakeroot -u' or 'sudo')."; \
83 false; \
84 } && \
86 $$KBUILD_PKG_ROOTCMD $(CONFIG_SHELL) \
87 $(srctree)/scripts/package/builddeb $@
89 deb-pkg: FORCE
90 $(MAKE) clean
91 $(call cmd,src_tar,$(KDEB_SOURCENAME))
92 $(MAKE) KBUILD_SRC=
93 +$(call cmd,builddeb)
95 bindeb-pkg: FORCE
96 $(MAKE) KBUILD_SRC=
97 +$(call cmd,builddeb)
99 clean-dirs += $(objtree)/debian/
101 # snap-pkg
102 # ---------------------------------------------------------------------------
103 snap-pkg: FORCE
104 rm -rf $(objtree)/snap
105 mkdir $(objtree)/snap
106 $(MAKE) clean
107 $(call cmd,src_tar,$(KERNELPATH))
108 sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
109 s@SRCTREE@$(shell realpath $(KERNELPATH).tar.gz)@" \
110 $(srctree)/scripts/package/snapcraft.template > \
111 $(objtree)/snap/snapcraft.yaml
112 cd $(objtree)/snap && \
113 snapcraft --target-arch=$(UTS_MACHINE)
115 clean-dirs += $(objtree)/snap/
117 # tarball targets
118 # ---------------------------------------------------------------------------
119 tar%pkg: FORCE
120 $(MAKE) KBUILD_SRC=
121 $(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
123 clean-dirs += $(objtree)/tar-install/
126 # perf-pkg - generate a source tarball with perf source
127 # ---------------------------------------------------------------------------
129 perf-tar=perf-$(KERNELVERSION)
131 quiet_cmd_perf_tar = TAR
132 cmd_perf_tar = \
133 git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
134 HEAD^{tree} $$(cd $(srctree); \
135 echo $$(cat tools/perf/MANIFEST)) \
136 -o $(perf-tar).tar; \
137 mkdir -p $(perf-tar); \
138 git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD; \
139 (cd $(srctree)/tools/perf; \
140 util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/); \
141 tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
142 rm -r $(perf-tar); \
143 $(if $(findstring tar-src,$@),, \
144 $(if $(findstring bz2,$@),bzip2, \
145 $(if $(findstring gz,$@),gzip, \
146 $(if $(findstring xz,$@),xz, \
147 $(error unknown target $@)))) \
148 -f -9 $(perf-tar).tar)
150 perf-%pkg: FORCE
151 $(call cmd,perf_tar)
153 # Help text displayed when executing 'make help'
154 # ---------------------------------------------------------------------------
155 help: FORCE
156 @echo ' rpm-pkg - Build both source and binary RPM kernel packages'
157 @echo ' binrpm-pkg - Build only the binary kernel RPM package'
158 @echo ' deb-pkg - Build both source and binary deb kernel packages'
159 @echo ' bindeb-pkg - Build only the binary kernel deb package'
160 @echo ' snap-pkg - Build only the binary kernel snap package (will connect to external hosts)'
161 @echo ' tar-pkg - Build the kernel as an uncompressed tarball'
162 @echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
163 @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
164 @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
165 @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
166 @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
167 @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
168 @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'