]> git.ipfire.org Git - thirdparty/linux.git/blame - scripts/package/Makefile
scripts: add stackdelta script
[thirdparty/linux.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))
6615d6c3
MM
26# Include only those top-level files that are needed by make, plus the GPL copy
27TAR_CONTENT := $(KBUILD_ALLDIRS) kernel.spec .config .scmversion Makefile \
28 Kbuild Kconfig COPYING $(wildcard localversion*)
29TAR_CONTENT := $(addprefix $(KERNELPATH)/,$(TAR_CONTENT))
1da177e4 30MKSPEC := $(srctree)/scripts/package/mkspec
1da177e4
LT
31
32# rpm-pkg
0131705d 33# ---------------------------------------------------------------------------
65013203 34rpm-pkg rpm: FORCE
4c6e00cf 35 @if test "$(objtree)" != "$(srctree)"; then \
db9038c8
FP
36 echo "Building source + binary RPM is not possible outside the"; \
37 echo "kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
38 echo "binrpm-pkg target instead."; \
39 false; \
40 fi
1da177e4 41 $(MAKE) clean
403d3cc4 42 ln -sf $(srctree) $(KERNELPATH)
65013203 43 $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
b003afe3 44 $(CONFIG_SHELL) $(srctree)/scripts/setlocalversion --save-scmversion
403d3cc4
MM
45 tar -cz $(RCS_TAR_IGNORE) -f $(KERNELPATH).tar.gz $(TAR_CONTENT)
46 rm $(KERNELPATH)
b925dbfe 47 rm -f $(objtree)/.scmversion
1da177e4 48 $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version
1da177e4 49 mv -f $(objtree)/.tmp_version $(objtree)/.version
21a59991 50 rpmbuild --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz
65013203 51 rm $(KERNELPATH).tar.gz kernel.spec
1da177e4
LT
52
53# binrpm-pkg
0131705d 54# ---------------------------------------------------------------------------
65013203 55binrpm-pkg: FORCE
a91f98a2 56 $(MAKE) KBUILD_SRC=
65013203 57 $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
1da177e4 58 $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version
1da177e4
LT
59 mv -f $(objtree)/.tmp_version $(objtree)/.version
60
21a59991 61 rpmbuild --define "_builddir $(objtree)" --target \
f66ba560 62 $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
65013203 63 rm binkernel.spec
1da177e4
LT
64
65# Deb target
66# ---------------------------------------------------------------------------
db1d1865
JN
67quiet_cmd_builddeb = BUILDDEB
68 cmd_builddeb = set -e; \
69 test `id -u` = 0 || \
70 test -n "$(KBUILD_PKG_ROOTCMD)" || { \
71 which fakeroot >/dev/null 2>&1 && \
72 KBUILD_PKG_ROOTCMD="fakeroot -u"; \
73 } || { \
74 echo; \
75 echo "builddeb must be run as root (or using fakeroot)."; \
76 echo "KBUILD_PKG_ROOTCMD is unset and fakeroot not found."; \
77 echo "Try setting KBUILD_PKG_ROOTCMD to a command to acquire"; \
78 echo "root privileges (e.g., 'fakeroot -u' or 'sudo')."; \
79 false; \
80 } && \
81 \
82 $$KBUILD_PKG_ROOTCMD $(CONFIG_SHELL) \
83 $(srctree)/scripts/package/builddeb
84
0131705d 85deb-pkg: FORCE
a91f98a2 86 $(MAKE) KBUILD_SRC=
db1d1865 87 $(call cmd,builddeb)
1da177e4
LT
88
89clean-dirs += $(objtree)/debian/
90
91
6d983fea
JBG
92# tarball targets
93# ---------------------------------------------------------------------------
0131705d 94tar%pkg: FORCE
6073aa64 95 $(MAKE) KBUILD_SRC=
6d983fea
JBG
96 $(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
97
98clean-dirs += $(objtree)/tar-install/
99
100
8e5564e6
ACM
101# perf-pkg - generate a source tarball with perf source
102# ---------------------------------------------------------------------------
103
104perf-tar=perf-$(KERNELVERSION)
105
106quiet_cmd_perf_tar = TAR
107 cmd_perf_tar = \
3bdccc88 108git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
109 HEAD^{tree} $$(cd $(srctree); \
110 echo $$(cat $(srctree)/tools/perf/MANIFEST)) \
111 -o $(perf-tar).tar; \
8e5564e6 112mkdir -p $(perf-tar); \
3bdccc88 113git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD; \
a614d01b
DA
114(cd $(srctree)/tools/perf; \
115util/PERF-VERSION-GEN ../../$(perf-tar)/ 2>/dev/null); \
116tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
8e5564e6
ACM
117rm -r $(perf-tar); \
118$(if $(findstring tar-src,$@),, \
119$(if $(findstring bz2,$@),bzip2, \
120$(if $(findstring gz,$@),gzip, \
9a17f400
ZK
121$(if $(findstring xz,$@),xz, \
122$(error unknown target $@)))) \
8e5564e6
ACM
123 -f -9 $(perf-tar).tar)
124
125perf-%pkg: FORCE
126 $(call cmd,perf_tar)
127
1da177e4
LT
128# Help text displayed when executing 'make help'
129# ---------------------------------------------------------------------------
0131705d 130help: FORCE
8e5564e6
ACM
131 @echo ' rpm-pkg - Build both source and binary RPM kernel packages'
132 @echo ' binrpm-pkg - Build only the binary kernel package'
0f60be20 133 @echo ' deb-pkg - Build the kernel as a deb package'
8e5564e6
ACM
134 @echo ' tar-pkg - Build the kernel as an uncompressed tarball'
135 @echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
136 @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
9a17f400 137 @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
8e5564e6
ACM
138 @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
139 @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
140 @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
9a17f400 141 @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'