Makefile 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. # Makefile for the different targets used to generate full packages of a kernel
  2. # It uses the generic clean infrastructure of kbuild
  3. # RPM target
  4. # ---------------------------------------------------------------------------
  5. # The rpm target generates two rpm files:
  6. # /usr/src/packages/SRPMS/kernel-2.6.7rc2-1.src.rpm
  7. # /usr/src/packages/RPMS/i386/kernel-2.6.7rc2-1.<arch>.rpm
  8. # The src.rpm files includes all source for the kernel being built
  9. # The <arch>.rpm includes kernel configuration, modules etc.
  10. #
  11. # Process to create the rpm files
  12. # a) clean the kernel
  13. # b) Generate .spec file
  14. # c) Build a tar ball, using symlink to make kernel version
  15. # first entry in the path
  16. # d) and pack the result to a tar.gz file
  17. # e) generate the rpm files, based on kernel.spec
  18. # - Use /. to avoid tar packing just the symlink
  19. # Note that the rpm-pkg target cannot be used with KBUILD_OUTPUT,
  20. # but the binrpm-pkg target can; for some reason O= gets ignored.
  21. # Remove hyphens since they have special meaning in RPM filenames
  22. KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
  23. KDEB_SOURCENAME ?= linux-$(KERNELRELEASE)
  24. export KDEB_SOURCENAME
  25. # Include only those top-level files that are needed by make, plus the GPL copy
  26. TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
  27. Kbuild Kconfig COPYING $(wildcard localversion*)
  28. MKSPEC := $(srctree)/scripts/package/mkspec
  29. quiet_cmd_src_tar = TAR $(2).tar.gz
  30. cmd_src_tar = \
  31. if test "$(objtree)" != "$(srctree)"; then \
  32. echo "Building source tarball is not possible outside the"; \
  33. echo "kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
  34. echo "binrpm-pkg or bindeb-pkg target instead."; \
  35. false; \
  36. fi ; \
  37. $(srctree)/scripts/setlocalversion --save-scmversion; \
  38. tar -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \
  39. --transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
  40. rm -f $(objtree)/.scmversion
  41. # rpm-pkg
  42. # ---------------------------------------------------------------------------
  43. rpm-pkg rpm: FORCE
  44. $(MAKE) clean
  45. $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
  46. $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
  47. +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz
  48. # binrpm-pkg
  49. # ---------------------------------------------------------------------------
  50. binrpm-pkg: FORCE
  51. $(MAKE) KBUILD_SRC=
  52. $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
  53. +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
  54. $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
  55. clean-files += $(objtree)/*.spec
  56. # Deb target
  57. # ---------------------------------------------------------------------------
  58. quiet_cmd_builddeb = BUILDDEB
  59. cmd_builddeb = set -e; \
  60. test `id -u` = 0 || \
  61. test -n "$(KBUILD_PKG_ROOTCMD)" || { \
  62. which fakeroot >/dev/null 2>&1 && \
  63. KBUILD_PKG_ROOTCMD="fakeroot -u"; \
  64. } || { \
  65. echo; \
  66. echo "builddeb must be run as root (or using fakeroot)."; \
  67. echo "KBUILD_PKG_ROOTCMD is unset and fakeroot not found."; \
  68. echo "Try setting KBUILD_PKG_ROOTCMD to a command to acquire"; \
  69. echo "root privileges (e.g., 'fakeroot -u' or 'sudo')."; \
  70. false; \
  71. } && \
  72. \
  73. $$KBUILD_PKG_ROOTCMD $(CONFIG_SHELL) \
  74. $(srctree)/scripts/package/builddeb $@
  75. deb-pkg: FORCE
  76. $(MAKE) clean
  77. $(call cmd,src_tar,$(KDEB_SOURCENAME))
  78. $(MAKE) KBUILD_SRC=
  79. +$(call cmd,builddeb)
  80. bindeb-pkg: FORCE
  81. $(MAKE) KBUILD_SRC=
  82. +$(call cmd,builddeb)
  83. clean-dirs += $(objtree)/debian/
  84. # tarball targets
  85. # ---------------------------------------------------------------------------
  86. tar%pkg: FORCE
  87. $(MAKE) KBUILD_SRC=
  88. $(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
  89. clean-dirs += $(objtree)/tar-install/
  90. # perf-pkg - generate a source tarball with perf source
  91. # ---------------------------------------------------------------------------
  92. perf-tar=perf-$(KERNELVERSION)
  93. quiet_cmd_perf_tar = TAR
  94. cmd_perf_tar = \
  95. git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
  96. HEAD^{tree} $$(cd $(srctree); \
  97. echo $$(cat tools/perf/MANIFEST)) \
  98. -o $(perf-tar).tar; \
  99. mkdir -p $(perf-tar); \
  100. git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD; \
  101. (cd $(srctree)/tools/perf; \
  102. util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/); \
  103. tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
  104. rm -r $(perf-tar); \
  105. $(if $(findstring tar-src,$@),, \
  106. $(if $(findstring bz2,$@),bzip2, \
  107. $(if $(findstring gz,$@),gzip, \
  108. $(if $(findstring xz,$@),xz, \
  109. $(error unknown target $@)))) \
  110. -f -9 $(perf-tar).tar)
  111. perf-%pkg: FORCE
  112. $(call cmd,perf_tar)
  113. # Help text displayed when executing 'make help'
  114. # ---------------------------------------------------------------------------
  115. help: FORCE
  116. @echo ' rpm-pkg - Build both source and binary RPM kernel packages'
  117. @echo ' binrpm-pkg - Build only the binary kernel RPM package'
  118. @echo ' deb-pkg - Build both source and binary deb kernel packages'
  119. @echo ' bindeb-pkg - Build only the binary kernel deb package'
  120. @echo ' tar-pkg - Build the kernel as an uncompressed tarball'
  121. @echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
  122. @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
  123. @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
  124. @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
  125. @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
  126. @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
  127. @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'