Makefile 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. # Do we have rpmbuild, otherwise fall back to the older rpm
  22. RPM := $(shell if [ -x "/usr/bin/rpmbuild" ]; then echo rpmbuild; \
  23. else echo rpm; fi)
  24. # Remove hyphens since they have special meaning in RPM filenames
  25. KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
  26. # Include only those top-level files that are needed by make, plus the GPL copy
  27. TAR_CONTENT := $(KBUILD_ALLDIRS) kernel.spec .config .scmversion Makefile \
  28. Kbuild Kconfig COPYING $(wildcard localversion*)
  29. TAR_CONTENT := $(addprefix $(KERNELPATH)/,$(TAR_CONTENT))
  30. MKSPEC := $(srctree)/scripts/package/mkspec
  31. # rpm-pkg
  32. # ---------------------------------------------------------------------------
  33. rpm-pkg rpm: FORCE
  34. @if test "$(objtree)" != "$(srctree)"; then \
  35. echo "Building source + binary RPM is not possible outside the"; \
  36. echo "kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
  37. echo "binrpm-pkg target instead."; \
  38. false; \
  39. fi
  40. $(MAKE) clean
  41. ln -sf $(srctree) $(KERNELPATH)
  42. $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
  43. $(CONFIG_SHELL) $(srctree)/scripts/setlocalversion --save-scmversion
  44. tar -cz $(RCS_TAR_IGNORE) -f $(KERNELPATH).tar.gz $(TAR_CONTENT)
  45. rm $(KERNELPATH)
  46. rm -f $(objtree)/.scmversion
  47. $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version
  48. mv -f $(objtree)/.tmp_version $(objtree)/.version
  49. $(RPM) $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz
  50. rm $(KERNELPATH).tar.gz kernel.spec
  51. # binrpm-pkg
  52. # ---------------------------------------------------------------------------
  53. binrpm-pkg: FORCE
  54. $(MAKE) KBUILD_SRC=
  55. $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec
  56. $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version
  57. mv -f $(objtree)/.tmp_version $(objtree)/.version
  58. $(RPM) $(RPMOPTS) --define "_builddir $(objtree)" --target \
  59. $(UTS_MACHINE) -bb $(objtree)/binkernel.spec
  60. rm binkernel.spec
  61. # Deb target
  62. # ---------------------------------------------------------------------------
  63. quiet_cmd_builddeb = BUILDDEB
  64. cmd_builddeb = set -e; \
  65. test `id -u` = 0 || \
  66. test -n "$(KBUILD_PKG_ROOTCMD)" || { \
  67. which fakeroot >/dev/null 2>&1 && \
  68. KBUILD_PKG_ROOTCMD="fakeroot -u"; \
  69. } || { \
  70. echo; \
  71. echo "builddeb must be run as root (or using fakeroot)."; \
  72. echo "KBUILD_PKG_ROOTCMD is unset and fakeroot not found."; \
  73. echo "Try setting KBUILD_PKG_ROOTCMD to a command to acquire"; \
  74. echo "root privileges (e.g., 'fakeroot -u' or 'sudo')."; \
  75. false; \
  76. } && \
  77. \
  78. $$KBUILD_PKG_ROOTCMD $(CONFIG_SHELL) \
  79. $(srctree)/scripts/package/builddeb
  80. deb-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 $(srctree)/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 ../../$(perf-tar)/ 2>/dev/null); \
  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 package'
  118. @echo ' deb-pkg - Build the kernel as a deb package'
  119. @echo ' tar-pkg - Build the kernel as an uncompressed tarball'
  120. @echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
  121. @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
  122. @echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
  123. @echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
  124. @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
  125. @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
  126. @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'