1 # Makefile for the different targets used to generate full packages of a kernel
2 # It uses the generic clean infrastructure of kbuild
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
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 # Do we have rpmbuild, otherwise fall back to the older rpm
25 RPM
:= $(shell if
[ -x
"/usr/bin/rpmbuild" ]; then echo rpmbuild
; \
28 # Remove hyphens since they have special meaning in RPM filenames
29 KERNELPATH
:= kernel-
$(subst -,_
,$(KERNELRELEASE
))
30 MKSPEC
:= $(srctree
)/scripts
/package
/mkspec
31 PREV
:= set
-e
; cd
-P ..
;
34 # ---------------------------------------------------------------------------
35 $(objtree
)/kernel.spec
: $(MKSPEC
) $(srctree
)/Makefile
36 $(CONFIG_SHELL
) $(MKSPEC
) > $@
38 rpm-pkg rpm
: $(objtree
)/kernel.spec FORCE
39 @if
test -n
"$(KBUILD_OUTPUT)"; then \
40 echo
"Building source + binary RPM is not possible outside the"; \
41 echo
"kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
42 echo
"binrpm-pkg target instead."; \
46 $(PREV
) ln
-sf
$(srctree
) $(KERNELPATH
)
47 $(CONFIG_SHELL
) $(srctree
)/scripts
/setlocalversion
--save-scmversion
48 $(PREV
) tar -cz
$(RCS_TAR_IGNORE
) -f
$(KERNELPATH
).
tar.gz
$(KERNELPATH
)/.
49 $(PREV
) rm $(KERNELPATH
)
50 rm -f
$(objtree
)/.scmversion
52 $(CONFIG_SHELL
) $(srctree
)/scripts
/mkversion
> $(objtree
)/.tmp_version
54 mv
-f
$(objtree
)/.tmp_version
$(objtree
)/.version
56 $(RPM
) $(RPMOPTS
) --target
$(UTS_MACHINE
) -ta ..
/$(KERNELPATH
).
tar.gz
57 rm ..
/$(KERNELPATH
).
tar.gz
59 clean-files
:= $(objtree
)/kernel.spec
62 # ---------------------------------------------------------------------------
63 $(objtree
)/binkernel.spec
: $(MKSPEC
) $(srctree
)/Makefile
64 $(CONFIG_SHELL
) $(MKSPEC
) prebuilt
> $@
66 binrpm-pkg
: $(objtree
)/binkernel.spec FORCE
69 $(CONFIG_SHELL
) $(srctree
)/scripts
/mkversion
> $(objtree
)/.tmp_version
71 mv
-f
$(objtree
)/.tmp_version
$(objtree
)/.version
73 $(RPM
) $(RPMOPTS
) --define "_builddir $(objtree)" --target \
76 clean-files
+= $(objtree
)/binkernel.spec
79 # ---------------------------------------------------------------------------
80 quiet_cmd_builddeb
= BUILDDEB
81 cmd_builddeb
= set
-e
; \
83 test -n
"$(KBUILD_PKG_ROOTCMD)" ||
{ \
84 which fakeroot
>/dev
/null
2>&1 && \
85 KBUILD_PKG_ROOTCMD
="fakeroot -u"; \
88 echo
"builddeb must be run as root (or using fakeroot)."; \
89 echo
"KBUILD_PKG_ROOTCMD is unset and fakeroot not found."; \
90 echo
"Try setting KBUILD_PKG_ROOTCMD to a command to acquire"; \
91 echo
"root privileges (e.g., 'fakeroot -u' or 'sudo')."; \
95 $$KBUILD_PKG_ROOTCMD $(CONFIG_SHELL
) \
96 $(srctree
)/scripts
/package
/builddeb
102 clean-dirs
+= $(objtree
)/debian
/
106 # ---------------------------------------------------------------------------
109 $(CONFIG_SHELL
) $(srctree
)/scripts
/package
/buildtar
$@
111 clean-dirs
+= $(objtree
)/tar-install
/
114 # perf-pkg - generate a source tarball with perf source
115 # ---------------------------------------------------------------------------
117 perf-tar
=perf-
$(KERNELVERSION
)
119 quiet_cmd_perf_tar
= TAR
121 git
--git-dir
=$(srctree
)/.git archive
--prefix=$(perf-tar
)/ \
122 HEAD^
{tree
} $$(cd
$(srctree
); \
123 echo
$$(cat
$(srctree
)/tools
/perf
/MANIFEST
)) \
124 -o
$(perf-tar
).
tar; \
125 mkdir
-p
$(perf-tar
); \
126 git
--git-dir
=$(srctree
)/.git rev-parse HEAD
> $(perf-tar
)/HEAD
; \
127 tar rf
$(perf-tar
).
tar $(perf-tar
)/HEAD
; \
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)
139 # Help text displayed when executing 'make help'
140 # ---------------------------------------------------------------------------
142 @echo
' rpm-pkg - Build both source and binary RPM kernel packages'
143 @echo
' binrpm-pkg - Build only the binary kernel package'
144 @echo
' deb-pkg - Build the kernel as an deb package'
145 @echo
' tar-pkg - Build the kernel as an uncompressed tarball'
146 @echo
' targz-pkg - Build the kernel as a gzip compressed tarball'
147 @echo
' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
148 @echo
' tarxz-pkg - Build the kernel as a xz compressed tarball'
149 @echo
' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
150 @echo
' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
151 @echo
' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
152 @echo
' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball'