| 
									
										
										
										
											2019-05-19 12:07:45 +00:00
										 |  |  | # SPDX-License-Identifier: GPL-2.0-only
 | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | # Makefile for the different targets used to generate full packages of a kernel
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | include $(srctree)/scripts/Kbuild.include | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # 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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-25 20:15:39 +00:00
										 |  |  | # Note that the rpm-pkg target cannot be used with KBUILD_OUTPUT,
 | 
					
						
							|  |  |  | # but the binrpm-pkg target can; for some reason O= gets ignored.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | # Remove hyphens since they have special meaning in RPM filenames
 | 
					
						
							| 
									
										
										
										
											2011-05-04 20:48:11 +00:00
										 |  |  | KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE)) | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:24 +00:00
										 |  |  | KDEB_SOURCENAME ?= linux-$(KERNELRELEASE) | 
					
						
							| 
									
										
										
										
											2018-04-05 11:22:29 +00:00
										 |  |  | KBUILD_PKG_ROOTCMD ?="fakeroot -u" | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:24 +00:00
										 |  |  | export KDEB_SOURCENAME | 
					
						
							| 
									
										
										
										
											2013-04-12 12:12:50 +00:00
										 |  |  | # Include only those top-level files that are needed by make, plus the GPL copy
 | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:08 +00:00
										 |  |  | TAR_CONTENT := $(KBUILD_ALLDIRS) .config .scmversion Makefile \
 | 
					
						
							| 
									
										
										
										
											2013-04-12 12:12:50 +00:00
										 |  |  |                Kbuild Kconfig COPYING $(wildcard localversion*) | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | MKSPEC     := $(srctree)/scripts/package/mkspec | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:08 +00:00
										 |  |  | quiet_cmd_src_tar = TAR     $(2).tar.gz | 
					
						
							|  |  |  |       cmd_src_tar = \
 | 
					
						
							|  |  |  | if test "$(objtree)" != "$(srctree)"; then \ | 
					
						
							| 
									
										
										
										
											2017-12-06 10:32:57 +00:00
										 |  |  | 	echo >&2; \
 | 
					
						
							|  |  |  | 	echo >&2 "  ERROR:"; \
 | 
					
						
							|  |  |  | 	echo >&2 "  Building source tarball is not possible outside the"; \
 | 
					
						
							|  |  |  | 	echo >&2 "  kernel source tree. Don't set KBUILD_OUTPUT, or use the"; \
 | 
					
						
							|  |  |  | 	echo >&2 "  binrpm-pkg or bindeb-pkg target instead."; \
 | 
					
						
							|  |  |  | 	echo >&2; \
 | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:08 +00:00
										 |  |  | 	false; \
 | 
					
						
							|  |  |  | fi ; \ | 
					
						
							|  |  |  | $(srctree)/scripts/setlocalversion --save-scmversion; \ | 
					
						
							|  |  |  | tar -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \ | 
					
						
							| 
									
										
										
										
											2017-11-15 09:17:07 +00:00
										 |  |  | 	--transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
 | 
					
						
							|  |  |  | rm -f $(objtree)/.scmversion | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | # rpm-pkg
 | 
					
						
							| 
									
										
										
										
											2006-03-08 17:39:05 +00:00
										 |  |  | # ---------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | PHONY += rpm-pkg | 
					
						
							|  |  |  | rpm-pkg: | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | 	$(MAKE) clean | 
					
						
							| 
									
										
										
										
											2013-04-13 19:21:15 +00:00
										 |  |  | 	$(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:08 +00:00
										 |  |  | 	$(call cmd,src_tar,$(KERNELPATH),kernel.spec) | 
					
						
							| 
									
										
										
										
											2017-09-30 01:10:11 +00:00
										 |  |  | 	+rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
 | 
					
						
							|  |  |  | 	--define='_smp_mflags %{nil}' | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # binrpm-pkg
 | 
					
						
							| 
									
										
										
										
											2006-03-08 17:39:05 +00:00
										 |  |  | # ---------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | PHONY += binrpm-pkg | 
					
						
							|  |  |  | binrpm-pkg: | 
					
						
							| 
									
										
										
										
											2019-02-14 03:05:14 +00:00
										 |  |  | 	$(MAKE) -f $(srctree)/Makefile | 
					
						
							| 
									
										
										
										
											2013-04-13 19:21:15 +00:00
										 |  |  | 	$(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec | 
					
						
							| 
									
										
										
										
											2017-09-30 01:10:09 +00:00
										 |  |  | 	+rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
 | 
					
						
							| 
									
										
										
										
											2013-05-15 16:06:26 +00:00
										 |  |  | 		$(UTS_MACHINE) -bb $(objtree)/binkernel.spec | 
					
						
							| 
									
										
										
										
											2017-09-30 01:10:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | PHONY += deb-pkg | 
					
						
							|  |  |  | deb-pkg: | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:24 +00:00
										 |  |  | 	$(MAKE) clean | 
					
						
							| 
									
										
										
										
											2018-04-05 11:22:29 +00:00
										 |  |  | 	$(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:24 +00:00
										 |  |  | 	$(call cmd,src_tar,$(KDEB_SOURCENAME)) | 
					
						
							| 
									
										
										
										
											2018-04-05 11:22:29 +00:00
										 |  |  | 	origversion=$$(dpkg-parsechangelog -SVersion |sed 's/-[^-]*$$//');\
 | 
					
						
							|  |  |  | 		mv $(KDEB_SOURCENAME).tar.gz ../$(KDEB_SOURCENAME)_$${origversion}.orig.tar.gz | 
					
						
							| 
									
										
										
										
											2019-02-05 12:37:52 +00:00
										 |  |  | 	+dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -i.git -us -uc | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | PHONY += bindeb-pkg | 
					
						
							|  |  |  | bindeb-pkg: | 
					
						
							| 
									
										
										
										
											2018-04-05 11:22:29 +00:00
										 |  |  | 	$(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian | 
					
						
							| 
									
										
										
										
											2019-02-05 12:37:52 +00:00
										 |  |  | 	+dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) -b -nc -uc | 
					
						
							| 
									
										
										
										
											2018-04-05 11:22:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | PHONY += intdeb-pkg | 
					
						
							|  |  |  | intdeb-pkg: | 
					
						
							| 
									
										
										
										
											2018-04-05 11:22:29 +00:00
										 |  |  | 	+$(CONFIG_SHELL) $(srctree)/scripts/package/builddeb | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												scripts/package: snap-pkg target
Following in footsteps of other targets like 'deb-pkg, 'rpm-pkg' and 'tar-pkg',
this patch adds a 'snap-pkg' target for the creation of a Linux kernel snap
package using the kbuild infrastructure.
A snap, in its general form, is a self contained, sandboxed, universal package
and it is intended to work across multiple distributions and/or devices. A snap
package is distributed as a single compressed squashfs filesystem.
A kernel snap is a snap package carrying the Linux kernel, kernel modules,
accessory files (DTBs, System.map, etc) and a manifesto file.  The purpose of a
kernel snap is to carry the Linux kernel during the creation of a system image,
eg. Ubuntu Core, and its subsequent upgrades.
For more information on snap packages: https://snapcraft.io/docs/
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
											
										 
											2017-11-27 11:07:34 +00:00
										 |  |  | # snap-pkg
 | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | PHONY += snap-pkg | 
					
						
							|  |  |  | snap-pkg: | 
					
						
							| 
									
										
										
											
												scripts/package: snap-pkg target
Following in footsteps of other targets like 'deb-pkg, 'rpm-pkg' and 'tar-pkg',
this patch adds a 'snap-pkg' target for the creation of a Linux kernel snap
package using the kbuild infrastructure.
A snap, in its general form, is a self contained, sandboxed, universal package
and it is intended to work across multiple distributions and/or devices. A snap
package is distributed as a single compressed squashfs filesystem.
A kernel snap is a snap package carrying the Linux kernel, kernel modules,
accessory files (DTBs, System.map, etc) and a manifesto file.  The purpose of a
kernel snap is to carry the Linux kernel during the creation of a system image,
eg. Ubuntu Core, and its subsequent upgrades.
For more information on snap packages: https://snapcraft.io/docs/
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
											
										 
											2017-11-27 11:07:34 +00:00
										 |  |  | 	rm -rf $(objtree)/snap | 
					
						
							|  |  |  | 	mkdir $(objtree)/snap | 
					
						
							|  |  |  | 	$(MAKE) clean | 
					
						
							|  |  |  | 	$(call cmd,src_tar,$(KERNELPATH)) | 
					
						
							|  |  |  | 	sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
 | 
					
						
							|  |  |  | 		s@SRCTREE@$(shell realpath $(KERNELPATH).tar.gz)@" \
 | 
					
						
							|  |  |  | 		$(srctree)/scripts/package/snapcraft.template > \
 | 
					
						
							|  |  |  | 		$(objtree)/snap/snapcraft.yaml | 
					
						
							|  |  |  | 	cd $(objtree)/snap && \
 | 
					
						
							|  |  |  | 	snapcraft --target-arch=$(UTS_MACHINE) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-24 09:27:37 +00:00
										 |  |  | # tarball targets
 | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | tar-pkgs := tar-pkg targz-pkg tarbz2-pkg tarxz-pkg | 
					
						
							|  |  |  | PHONY += $(tar-pkgs) | 
					
						
							|  |  |  | $(tar-pkgs): | 
					
						
							| 
									
										
										
										
											2019-02-14 03:05:14 +00:00
										 |  |  | 	$(MAKE) -f $(srctree)/Makefile | 
					
						
							| 
									
										
										
										
											2019-05-27 23:54:23 +00:00
										 |  |  | 	+$(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@ | 
					
						
							| 
									
										
										
										
											2005-05-24 09:27:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | # perf-pkg - generate a source tarball with perf source
 | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | perf-tar=perf-$(KERNELVERSION) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | quiet_cmd_perf_tar = TAR | 
					
						
							|  |  |  |       cmd_perf_tar = \
 | 
					
						
							| 
									
										
										
										
											2011-05-13 23:41:12 +00:00
										 |  |  | git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/         \
 | 
					
						
							|  |  |  | 	HEAD^{tree} $$(cd $(srctree);                               \
 | 
					
						
							| 
									
										
										
										
											2015-09-01 14:14:21 +00:00
										 |  |  | 		       echo $$(cat tools/perf/MANIFEST)) \
 | 
					
						
							| 
									
										
										
										
											2011-05-13 23:41:12 +00:00
										 |  |  | 	-o $(perf-tar).tar;                                         \
 | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | mkdir -p $(perf-tar);                                               \ | 
					
						
							| 
									
										
										
										
											2011-05-13 23:41:12 +00:00
										 |  |  | git --git-dir=$(srctree)/.git rev-parse HEAD > $(perf-tar)/HEAD;    \
 | 
					
						
							| 
									
										
										
										
											2013-11-06 15:55:35 +00:00
										 |  |  | (cd $(srctree)/tools/perf;                                          \ | 
					
						
							| 
									
										
										
										
											2015-09-01 14:14:21 +00:00
										 |  |  | util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/);              \ | 
					
						
							| 
									
										
										
										
											2013-11-06 15:55:35 +00:00
										 |  |  | tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \ | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | rm -r $(perf-tar);                                                  \ | 
					
						
							|  |  |  | $(if $(findstring tar-src,$@),,                                     \ | 
					
						
							|  |  |  | $(if $(findstring bz2,$@),bzip2,                                    \ | 
					
						
							|  |  |  | $(if $(findstring gz,$@),gzip,                                      \ | 
					
						
							| 
									
										
										
										
											2011-01-30 11:18:51 +00:00
										 |  |  | $(if $(findstring xz,$@),xz,                                        \ | 
					
						
							|  |  |  | $(error unknown target $@))))                                       \ | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | 	-f -9 $(perf-tar).tar) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | perf-tar-pkgs := perf-tar-src-pkg perf-targz-src-pkg perf-tarbz2-src-pkg perf-tarxz-src-pkg | 
					
						
							|  |  |  | PHONY += $(perf-tar-pkgs) | 
					
						
							|  |  |  | $(perf-tar-pkgs): | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | 	$(call cmd,perf_tar) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 22:20:36 +00:00
										 |  |  | # Help text displayed when executing 'make help'
 | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:03 +00:00
										 |  |  | PHONY += help | 
					
						
							|  |  |  | help: | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | 	@echo '  rpm-pkg             - Build both source and binary RPM kernel packages' | 
					
						
							| 
									
										
										
										
											2015-09-02 09:57:24 +00:00
										 |  |  | 	@echo '  binrpm-pkg          - Build only the binary kernel RPM package' | 
					
						
							|  |  |  | 	@echo '  deb-pkg             - Build both source and binary deb kernel packages' | 
					
						
							|  |  |  | 	@echo '  bindeb-pkg          - Build only the binary kernel deb package' | 
					
						
							| 
									
										
										
											
												scripts/package: snap-pkg target
Following in footsteps of other targets like 'deb-pkg, 'rpm-pkg' and 'tar-pkg',
this patch adds a 'snap-pkg' target for the creation of a Linux kernel snap
package using the kbuild infrastructure.
A snap, in its general form, is a self contained, sandboxed, universal package
and it is intended to work across multiple distributions and/or devices. A snap
package is distributed as a single compressed squashfs filesystem.
A kernel snap is a snap package carrying the Linux kernel, kernel modules,
accessory files (DTBs, System.map, etc) and a manifesto file.  The purpose of a
kernel snap is to carry the Linux kernel during the creation of a system image,
eg. Ubuntu Core, and its subsequent upgrades.
For more information on snap packages: https://snapcraft.io/docs/
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
											
										 
											2017-11-27 11:07:34 +00:00
										 |  |  | 	@echo '  snap-pkg            - Build only the binary kernel snap package (will connect to external hosts)' | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | 	@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' | 
					
						
							| 
									
										
										
										
											2011-01-30 11:18:51 +00:00
										 |  |  | 	@echo '  tarxz-pkg           - Build the kernel as a xz compressed tarball' | 
					
						
							| 
									
										
										
										
											2010-05-31 14:13:21 +00:00
										 |  |  | 	@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' | 
					
						
							| 
									
										
										
										
											2011-01-30 11:18:51 +00:00
										 |  |  | 	@echo '  perf-tarxz-src-pkg  - Build $(perf-tar).tar.xz source tarball' | 
					
						
							| 
									
										
										
										
											2019-08-21 07:02:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .PHONY: $(PHONY) |