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