mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
8e5564e6c7
Useful for when people want to try some version of the perf tools and don't wants to download the kernel tarball. Here is a session using this new target: [root@emilia linux-2.6-tip]# make help | grep -i perf perf-tar-src-pkg - Build perf-2.6.35-rc1.tar source tarball perf-targz-src-pkg - Build perf-2.6.35-rc1.tar.gz source tarball perf-tarbz2-src-pkg - Build perf-2.6.35-rc1.tar.bz2 source tarball [root@emilia linux-2.6-tip]# make perf-tarbz2-src-pkg TAR [root@emilia linux-2.6-tip]# ls -la perf-2.6.35-rc1.tar.bz2 -rw-r--r-- 1 root root 295731 May 31 11:18 perf-2.6.35-rc1.tar.bz2 [root@emilia linux-2.6-tip]# tar xf perf-2.6.35-rc1.tar.bz2 [root@emilia linux-2.6-tip]# cd perf-2.6.35-rc1 [root@emilia perf-2.6.35-rc1]# ls arch HEAD include lib tools [root@emilia perf-2.6.35-rc1]# cd tools/perf [root@emilia perf]# make -j9 2>&1 | tail CC arch/x86/util/dwarf-regs.o CC util/probe-finder.o CC util/newt.o CC util/scripting-engines/trace-event-perl.o CC scripts/perl/Perf-Trace-Util/Context.o CC perf.o CC builtin-help.o AR libperf.a LINK perf rm .perf.dev.null [root@emilia perf]# ./perf record -a sleep 1 [ perf record: Woken up 1 times to write data ] [ perf record: Captured and wrote 0.262 MB perf.data (~11457 samples) ] [root@emilia perf]# ./perf report | head -12 # Events: 6K cycles # # Overhead Command Shared Object Symbol # ........ ............... .................. ...... # 4.73% perf [kernel.kallsyms] [k] format_decode 4.49% perf libc-2.12.so [.] _IO_file_underflow_internal 4.38% init [kernel.kallsyms] [k] mwait_idle 3.29% perf [kernel.kallsyms] [k] vsnprintf 2.38% init [kernel.kallsyms] [k] sched_clock_local 2.35% init [kernel.kallsyms] [k] apic_timer_interrupt 1.86% sirq-timer/5 [kernel.kallsyms] [k] find_busiest_group [root@emilia perf]# Acked-by: Michal Marek <mmarek@suse.cz> Acked-by: Sam Ravnborg <sam@ravnborg.org> Cc: David S. Miller <davem@davemloft.net> Cc: Frédéric Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Michal Marek <mmarek@suse.cz> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Stephane Eranian <eranian@google.com> Cc: Tom Zanussi <tzanussi@gmail.com> LKML-Reference: <20100528185357.GA28009@ghostprotocols.net> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
149 lines
5.5 KiB
Makefile
149 lines
5.5 KiB
Makefile
# Makefile for the different targets used to generate full packages of a kernel
|
|
# It uses the generic clean infrastructure of kbuild
|
|
|
|
# RPM target
|
|
# ---------------------------------------------------------------------------
|
|
# The rpm target generates two rpm files:
|
|
# /usr/src/packages/SRPMS/kernel-2.6.7rc2-1.src.rpm
|
|
# /usr/src/packages/RPMS/i386/kernel-2.6.7rc2-1.<arch>.rpm
|
|
# The src.rpm files includes all source for the kernel being built
|
|
# The <arch>.rpm includes kernel configuration, modules etc.
|
|
#
|
|
# Process to create the rpm files
|
|
# a) clean the kernel
|
|
# b) Generate .spec file
|
|
# c) Build a tar ball, using symlink to make kernel version
|
|
# first entry in the path
|
|
# d) and pack the result to a tar.gz file
|
|
# e) generate the rpm files, based on kernel.spec
|
|
# - Use /. to avoid tar packing just the symlink
|
|
|
|
# Note that the rpm-pkg target cannot be used with KBUILD_OUTPUT,
|
|
# but the binrpm-pkg target can; for some reason O= gets ignored.
|
|
|
|
# Do we have rpmbuild, otherwise fall back to the older rpm
|
|
RPM := $(shell if [ -x "/usr/bin/rpmbuild" ]; then echo rpmbuild; \
|
|
else echo rpm; fi)
|
|
|
|
# Remove hyphens since they have special meaning in RPM filenames
|
|
KERNELPATH := kernel-$(subst -,,$(KERNELRELEASE))
|
|
MKSPEC := $(srctree)/scripts/package/mkspec
|
|
PREV := set -e; cd ..;
|
|
|
|
# rpm-pkg
|
|
# ---------------------------------------------------------------------------
|
|
$(objtree)/kernel.spec: $(MKSPEC) $(srctree)/Makefile
|
|
$(CONFIG_SHELL) $(MKSPEC) > $@
|
|
|
|
rpm-pkg rpm: $(objtree)/kernel.spec FORCE
|
|
@if test -n "$(KBUILD_OUTPUT)"; then \
|
|
echo "Building source + binary RPM is not possible outside the"; \
|
|
echo "kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
|
|
echo "binrpm-pkg target instead."; \
|
|
false; \
|
|
fi
|
|
$(MAKE) clean
|
|
$(PREV) ln -sf $(srctree) $(KERNELPATH)
|
|
$(CONFIG_SHELL) $(srctree)/scripts/setlocalversion > $(objtree)/.scmversion
|
|
$(PREV) tar -cz $(RCS_TAR_IGNORE) -f $(KERNELPATH).tar.gz $(KERNELPATH)/.
|
|
$(PREV) rm $(KERNELPATH)
|
|
rm -f $(objtree)/.scmversion
|
|
set -e; \
|
|
$(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version
|
|
set -e; \
|
|
mv -f $(objtree)/.tmp_version $(objtree)/.version
|
|
|
|
$(RPM) $(RPMOPTS) --target $(UTS_MACHINE) -ta ../$(KERNELPATH).tar.gz
|
|
rm ../$(KERNELPATH).tar.gz
|
|
|
|
clean-files := $(objtree)/kernel.spec
|
|
|
|
# binrpm-pkg
|
|
# ---------------------------------------------------------------------------
|
|
$(objtree)/binkernel.spec: $(MKSPEC) $(srctree)/Makefile
|
|
$(CONFIG_SHELL) $(MKSPEC) prebuilt > $@
|
|
|
|
binrpm-pkg: $(objtree)/binkernel.spec FORCE
|
|
$(MAKE) KBUILD_SRC=
|
|
set -e; \
|
|
$(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version
|
|
set -e; \
|
|
mv -f $(objtree)/.tmp_version $(objtree)/.version
|
|
|
|
$(RPM) $(RPMOPTS) --define "_builddir $(objtree)" --target \
|
|
$(UTS_MACHINE) -bb $<
|
|
|
|
clean-files += $(objtree)/binkernel.spec
|
|
|
|
# Deb target
|
|
# ---------------------------------------------------------------------------
|
|
quiet_cmd_builddeb = BUILDDEB
|
|
cmd_builddeb = set -e; \
|
|
test `id -u` = 0 || \
|
|
test -n "$(KBUILD_PKG_ROOTCMD)" || { \
|
|
which fakeroot >/dev/null 2>&1 && \
|
|
KBUILD_PKG_ROOTCMD="fakeroot -u"; \
|
|
} || { \
|
|
echo; \
|
|
echo "builddeb must be run as root (or using fakeroot)."; \
|
|
echo "KBUILD_PKG_ROOTCMD is unset and fakeroot not found."; \
|
|
echo "Try setting KBUILD_PKG_ROOTCMD to a command to acquire"; \
|
|
echo "root privileges (e.g., 'fakeroot -u' or 'sudo')."; \
|
|
false; \
|
|
} && \
|
|
\
|
|
$$KBUILD_PKG_ROOTCMD $(CONFIG_SHELL) \
|
|
$(srctree)/scripts/package/builddeb
|
|
|
|
deb-pkg: FORCE
|
|
$(MAKE) KBUILD_SRC=
|
|
$(call cmd,builddeb)
|
|
|
|
clean-dirs += $(objtree)/debian/
|
|
|
|
|
|
# tarball targets
|
|
# ---------------------------------------------------------------------------
|
|
tar%pkg: FORCE
|
|
$(MAKE) KBUILD_SRC=
|
|
$(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@
|
|
|
|
clean-dirs += $(objtree)/tar-install/
|
|
|
|
|
|
# perf-pkg - generate a source tarball with perf source
|
|
# ---------------------------------------------------------------------------
|
|
|
|
perf-tar=perf-$(KERNELVERSION)
|
|
|
|
quiet_cmd_perf_tar = TAR
|
|
cmd_perf_tar = \
|
|
git archive --prefix=$(perf-tar)/ HEAD^{tree} \
|
|
$$(cat $(srctree)/tools/perf/MANIFEST) -o $(perf-tar).tar; \
|
|
mkdir -p $(perf-tar); \
|
|
git rev-parse HEAD > $(perf-tar)/HEAD; \
|
|
tar rf $(perf-tar).tar $(perf-tar)/HEAD; \
|
|
rm -r $(perf-tar); \
|
|
$(if $(findstring tar-src,$@),, \
|
|
$(if $(findstring bz2,$@),bzip2, \
|
|
$(if $(findstring gz,$@),gzip, \
|
|
$(error unknown target $@))) \
|
|
-f -9 $(perf-tar).tar)
|
|
|
|
perf-%pkg: FORCE
|
|
$(call cmd,perf_tar)
|
|
|
|
# Help text displayed when executing 'make help'
|
|
# ---------------------------------------------------------------------------
|
|
help: FORCE
|
|
@echo ' rpm-pkg - Build both source and binary RPM kernel packages'
|
|
@echo ' binrpm-pkg - Build only the binary kernel package'
|
|
@echo ' deb-pkg - Build the kernel as an deb package'
|
|
@echo ' tar-pkg - Build the kernel as an uncompressed tarball'
|
|
@echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
|
|
@echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
|
|
@echo ' perf-tar-src-pkg - Build $(perf-tar).tar source tarball'
|
|
@echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball'
|
|
@echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball'
|
|
|