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
|
|
|
|
2011-05-04 20:48:11 +00:00
|
|
|
KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
|
2018-04-05 11:22:29 +00:00
|
|
|
KBUILD_PKG_ROOTCMD ?="fakeroot -u"
|
2013-04-12 12:12:50 +00:00
|
|
|
# Include only those top-level files that are needed by make, plus the GPL copy
|
2022-09-24 18:19:09 +00:00
|
|
|
TAR_CONTENT := Documentation LICENSES arch block certs crypto drivers fs \
|
2022-11-23 22:00:44 +00:00
|
|
|
include init io_uring ipc kernel lib mm net rust \
|
|
|
|
samples scripts security sound tools usr virt \
|
2023-01-22 14:14:21 +00:00
|
|
|
.config 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"; \
|
2023-02-15 01:20:26 +00:00
|
|
|
echo >&2 " kernel source tree. Don't set KBUILD_OUTPUT"; \
|
2017-12-06 10:32:57 +00:00
|
|
|
echo >&2; \
|
2015-09-02 09:57:08 +00:00
|
|
|
false; \
|
|
|
|
fi ; \
|
kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables
Redefine GZIP, BZIP2, LZOP variables as KGZIP, KBZIP2, KLZOP resp.
GZIP, BZIP2, LZOP env variables are reserved by the tools. The original
attempt to redefine them internally doesn't work in makefiles/scripts
intercall scenarios, e.g., "make GZIP=gzip bindeb-pkg" and results in
broken builds. There can be other broken build commands because of this,
so the universal solution is to use non-reserved env variables for the
compression tools.
Fixes: 8dfb61dcbace ("kbuild: add variables for compression tools")
Signed-off-by: Denis Efremov <efremov@linux.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-06-08 09:59:44 +00:00
|
|
|
tar -I $(KGZIP) -c $(RCS_TAR_IGNORE) -f $(2).tar.gz \
|
2023-01-22 14:14:21 +00:00
|
|
|
--transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3)
|
2015-09-02 09:57:08 +00:00
|
|
|
|
2023-02-15 01:20:24 +00:00
|
|
|
# .tmp_filelist .tmp_filelist_exclude
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
scripts/list-gitignored: FORCE
|
|
|
|
$(Q)$(MAKE) -f $(srctree)/Makefile scripts_package
|
|
|
|
|
|
|
|
# 1f5d3a6b6532e25a5cdf1f311956b2b03d343a48 removed '*.rej' from .gitignore,
|
|
|
|
# but it is definitely a generated file.
|
|
|
|
filechk_filelist = \
|
|
|
|
$< --exclude='*.rej' --output=$@_exclude --prefix=./ --rootdir=$(srctree) --stat=-
|
|
|
|
|
|
|
|
.tmp_filelist: scripts/list-gitignored FORCE
|
|
|
|
$(call filechk,filelist)
|
|
|
|
|
|
|
|
# tarball
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
quiet_cmd_tar = TAR $@
|
|
|
|
cmd_tar = tar -c -f $@ $(tar-compress-opt) $(tar-exclude-opt) \
|
|
|
|
--owner=0 --group=0 --sort=name \
|
|
|
|
--transform 's:^\.:$*:S' -C $(tar-rootdir) .
|
|
|
|
|
|
|
|
tar-rootdir := $(srctree)
|
|
|
|
|
2023-02-15 01:20:30 +00:00
|
|
|
%.tar:
|
|
|
|
$(call cmd,tar)
|
|
|
|
|
2023-02-15 01:20:24 +00:00
|
|
|
%.tar.gz: private tar-compress-opt := -I $(KGZIP)
|
|
|
|
%.tar.gz:
|
|
|
|
$(call cmd,tar)
|
|
|
|
|
2023-02-15 01:20:30 +00:00
|
|
|
%.tar.bz2: private tar-compress-opt := -I $(KBZIP2)
|
|
|
|
%.tar.bz2:
|
|
|
|
$(call cmd,tar)
|
|
|
|
|
|
|
|
%.tar.xz: private tar-compress-opt := -I $(XZ)
|
|
|
|
%.tar.xz:
|
|
|
|
$(call cmd,tar)
|
|
|
|
|
|
|
|
%.tar.zst: private tar-compress-opt := -I $(ZSTD)
|
|
|
|
%.tar.zst:
|
|
|
|
$(call cmd,tar)
|
|
|
|
|
2023-02-15 01:20:24 +00:00
|
|
|
# Linux source tarball
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
linux.tar.gz: tar-exclude-opt = --exclude=./$@ --exclude-from=$<_exclude
|
|
|
|
linux.tar.gz: .tmp_filelist
|
|
|
|
|
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
|
2023-02-15 01:20:25 +00:00
|
|
|
rpm-pkg: srpm = $(shell rpmspec --srpm --query --queryformat='%{name}-%{VERSION}-%{RELEASE}.src.rpm' kernel.spec)
|
|
|
|
rpm-pkg: srcrpm-pkg
|
|
|
|
+rpmbuild $(RPMOPTS) --target $(UTS_MACHINE)-linux -rb $(srpm) \
|
2017-09-30 01:10:11 +00:00
|
|
|
--define='_smp_mflags %{nil}'
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2022-11-21 14:48:45 +00:00
|
|
|
# srcrpm-pkg
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
PHONY += srcrpm-pkg
|
2023-02-15 01:20:26 +00:00
|
|
|
srcrpm-pkg: linux.tar.gz
|
2022-11-21 14:48:45 +00:00
|
|
|
$(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec
|
2023-02-15 01:20:26 +00:00
|
|
|
+rpmbuild $(RPMOPTS) --target $(UTS_MACHINE)-linux -bs kernel.spec \
|
|
|
|
--define='_smp_mflags %{nil}' --define='_sourcedir .' --define='_srcrpmdir .'
|
2022-11-21 14:48:45 +00:00
|
|
|
|
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 \
|
2022-07-14 05:02:41 +00:00
|
|
|
$(UTS_MACHINE)-linux -bb $(objtree)/binkernel.spec
|
2017-09-30 01:10:10 +00:00
|
|
|
|
2023-02-15 01:20:27 +00:00
|
|
|
quiet_cmd_debianize = GEN $@
|
|
|
|
cmd_debianize = $(srctree)/scripts/package/mkdebian
|
|
|
|
|
|
|
|
debian: FORCE
|
|
|
|
$(call cmd,debianize)
|
|
|
|
|
|
|
|
PHONY += debian-orig
|
|
|
|
debian-orig: private source = $(shell dpkg-parsechangelog -S Source)
|
|
|
|
debian-orig: private version = $(shell dpkg-parsechangelog -S Version | sed 's/-[^-]*$$//')
|
|
|
|
debian-orig: private orig-name = $(source)_$(version).orig.tar.gz
|
|
|
|
debian-orig: linux.tar.gz debian
|
2023-02-15 01:20:28 +00:00
|
|
|
$(Q)if [ "$(df --output=target .. 2>/dev/null)" = "$(df --output=target $< 2>/dev/null)" ]; then \
|
|
|
|
ln -f $< ../$(orig-name); \
|
|
|
|
else \
|
|
|
|
cp $< ../$(orig-name); \
|
|
|
|
fi
|
2023-02-15 01:20:27 +00:00
|
|
|
|
2019-08-21 07:02:03 +00:00
|
|
|
PHONY += deb-pkg
|
2023-02-15 01:20:27 +00:00
|
|
|
deb-pkg: debian-orig
|
2023-02-15 01:20:24 +00:00
|
|
|
+dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) $(DPKG_FLAGS) \
|
2023-02-15 01:20:29 +00:00
|
|
|
--build=source,binary -nc -us -uc
|
2015-09-02 09:57:24 +00:00
|
|
|
|
2019-08-21 07:02:03 +00:00
|
|
|
PHONY += bindeb-pkg
|
2023-02-15 01:20:27 +00:00
|
|
|
bindeb-pkg: debian
|
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
|
|
|
|
# ---------------------------------------------------------------------------
|
2021-10-08 11:37:59 +00:00
|
|
|
tar-pkgs := dir-pkg tar-pkg targz-pkg tarbz2-pkg tarxz-pkg tarzst-pkg
|
2019-08-21 07:02:03 +00:00
|
|
|
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
|
|
|
|
2023-02-15 01:20:30 +00:00
|
|
|
# perf-tar*-src-pkg - generate a source tarball with perf source
|
2010-05-31 14:13:21 +00:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2023-02-15 01:20:30 +00:00
|
|
|
perf-tar-src-pkg-tarball = perf-$(KERNELVERSION).$(1)
|
|
|
|
perf-tar-src-pkg-phony = perf-$(subst .,,$(1))-src-pkg
|
|
|
|
|
|
|
|
quiet_cmd_stage_perf_src = STAGE $@
|
|
|
|
cmd_stage_perf_src = \
|
|
|
|
rm -rf $@; \
|
|
|
|
mkdir -p $@; \
|
|
|
|
tar -c -f - --exclude-from=$<_exclude -C $(srctree) --files-from=$(srctree)/tools/perf/MANIFEST | \
|
|
|
|
tar -x -f - -C $@
|
|
|
|
|
|
|
|
.tmp_perf: .tmp_filelist
|
|
|
|
$(call cmd,stage_perf_src)
|
|
|
|
|
|
|
|
filechk_perf_head = \
|
|
|
|
if test -z "$(git -C $(srctree) rev-parse --show-cdup 2>/dev/null)" && \
|
|
|
|
head=$$(git -C $(srctree) rev-parse --verify HEAD 2>/dev/null); then \
|
|
|
|
echo $$head; \
|
|
|
|
else \
|
|
|
|
echo "not a git tree"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
.tmp_perf/HEAD: .tmp_perf FORCE
|
|
|
|
$(call filechk,perf_head)
|
|
|
|
|
|
|
|
quiet_cmd_perf_version_file = GEN $@
|
|
|
|
cmd_perf_version_file = cd $(srctree)/tools/perf; util/PERF-VERSION-GEN $(dir $(abspath $@))
|
|
|
|
|
|
|
|
# PERF-VERSION-FILE and HEAD are independent, but this avoids updating the
|
|
|
|
# timestamp of PERF-VERSION-FILE.
|
|
|
|
# The best is to fix tools/perf/util/PERF-VERSION-GEN.
|
|
|
|
.tmp_perf/PERF-VERSION-FILE: .tmp_perf/HEAD $(srctree)/tools/perf/util/PERF-VERSION-GEN
|
|
|
|
$(call cmd,perf_version_file)
|
|
|
|
|
|
|
|
define perf-tar-src-pkg-rule
|
|
|
|
PHONY += $(perf-tar-src-pkg-phony)
|
|
|
|
$(perf-tar-src-pkg-phony): $(perf-tar-src-pkg-tarball)
|
|
|
|
@:
|
|
|
|
|
|
|
|
$(perf-tar-src-pkg-tarball): private tar-rootdir := .tmp_perf
|
|
|
|
$(perf-tar-src-pkg-tarball): .tmp_filelist .tmp_perf/HEAD .tmp_perf/PERF-VERSION-FILE
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach x, tar tar.gz tar.bz2 tar.xz tar.zst, $(eval $(call perf-tar-src-pkg-rule,$(x))))
|
2010-05-31 14:13:21 +00:00
|
|
|
|
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'
|
2022-12-27 09:21:57 +00:00
|
|
|
@echo ' srcrpm-pkg - Build only the source kernel RPM package'
|
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'
|
2019-10-25 11:52:32 +00:00
|
|
|
@echo ' snap-pkg - Build only the binary kernel snap package'
|
|
|
|
@echo ' (will connect to external hosts)'
|
2019-11-04 13:11:44 +00:00
|
|
|
@echo ' dir-pkg - Build the kernel as a plain directory structure'
|
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'
|
2021-10-08 11:37:59 +00:00
|
|
|
@echo ' tarzst-pkg - Build the kernel as a zstd compressed tarball'
|
2023-02-15 01:20:30 +00:00
|
|
|
@echo ' perf-tar-src-pkg - Build the perf source tarball with no compression'
|
|
|
|
@echo ' perf-targz-src-pkg - Build the perf source tarball with gzip compression'
|
|
|
|
@echo ' perf-tarbz2-src-pkg - Build the perf source tarball with bz2 compression'
|
|
|
|
@echo ' perf-tarxz-src-pkg - Build the perf source tarball with xz compression'
|
|
|
|
@echo ' perf-tarzst-src-pkg - Build the perf source tarball with zst compression'
|
2019-08-21 07:02:04 +00:00
|
|
|
|
2023-02-15 01:20:24 +00:00
|
|
|
PHONY += FORCE
|
|
|
|
FORCE:
|
|
|
|
|
2019-08-21 07:02:04 +00:00
|
|
|
.PHONY: $(PHONY)
|