2019-05-19 15:07:45 +03:00
# SPDX-License-Identifier: GPL-2.0-only
2005-04-17 02:20:36 +04:00
# Makefile for the different targets used to generate full packages of a kernel
2019-08-21 10:02:04 +03:00
i n c l u d e $( srctree ) / s c r i p t s / K b u i l d . i n c l u d e
2023-03-15 18:50:18 +03:00
i n c l u d e $( srctree ) / s c r i p t s / M a k e f i l e . l i b
2005-04-17 02:20:36 +04:00
2011-05-05 00:48:11 +04:00
KERNELPATH := kernel-$( subst -,_,$( KERNELRELEASE) )
2018-04-05 14:22:29 +03:00
KBUILD_PKG_ROOTCMD ?= "fakeroot -u"
2013-04-12 16:12:50 +04:00
# Include only those top-level files that are needed by make, plus the GPL copy
2022-09-24 21:19:09 +03:00
TAR_CONTENT := Documentation LICENSES arch block certs crypto drivers fs \
2022-11-24 01:00:44 +03:00
include init io_uring ipc kernel lib mm net rust \
samples scripts security sound tools usr virt \
2023-01-22 17:14:21 +03:00
.config Makefile \
2013-04-12 16:12:50 +04:00
Kbuild Kconfig COPYING $( wildcard localversion*)
2005-04-17 02:20:36 +04:00
MKSPEC := $( srctree) /scripts/package/mkspec
2015-09-02 12:57:08 +03:00
quiet_cmd_src_tar = TAR $( 2) .tar.gz
cmd_src_tar = \
i f t e s t "$(objtree)" ! = "$(srctree)" ; t h e n \
2017-12-06 13:32:57 +03:00
echo >& 2; \
echo >& 2 " ERROR:" ; \
echo >& 2 " Building source tarball is not possible outside the" ; \
2023-02-15 04:20:26 +03:00
echo >& 2 " kernel source tree. Don't set KBUILD_OUTPUT" ; \
2017-12-06 13:32:57 +03:00
echo >& 2; \
2015-09-02 12:57:08 +03:00
false; \
f i ; \
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 12:59:44 +03:00
t a r - I $( KGZIP ) - c $( RCS_TAR_IGNORE ) - f $( 2) . t a r . g z \
2023-01-22 17:14:21 +03:00
--transform 's:^:$(2)/:S' $( TAR_CONTENT) $( 3)
2015-09-02 12:57:08 +03:00
2023-03-15 18:50:18 +03:00
# tarball compression
2023-02-15 04:20:24 +03:00
# ---------------------------------------------------------------------------
2023-03-15 18:50:18 +03:00
%.tar.gz : %.tar
$( call cmd,gzip)
2023-02-15 04:20:24 +03:00
2023-03-15 18:50:18 +03:00
%.tar.bz2 : %.tar
$( call cmd,bzip2)
2023-02-15 04:20:24 +03:00
2023-03-15 18:50:18 +03:00
%.tar.xz : %.tar
$( call cmd,xzmisc)
2023-02-15 04:20:24 +03:00
2023-03-15 18:50:18 +03:00
%.tar.zst : %.tar
$( call cmd,zstd)
2023-02-15 04:20:24 +03:00
2023-03-15 18:50:18 +03:00
# Git
# ---------------------------------------------------------------------------
2023-02-15 04:20:24 +03:00
2023-03-15 18:50:18 +03:00
filechk_HEAD = git -C $( srctree) rev-parse --verify HEAD 2>/dev/null
2023-02-15 04:20:30 +03:00
2023-03-15 18:50:18 +03:00
.tmp_HEAD : check -git FORCE
$( call filechk,HEAD)
2023-02-15 04:20:30 +03:00
2023-03-15 18:50:18 +03:00
PHONY += check-git
check-git :
@if ! $( srctree) /scripts/check-git; then \
echo >& 2 "error: creating source package requires git repository" ; \
false; \
fi
2023-02-15 04:20:30 +03:00
2023-02-15 04:20:24 +03:00
# Linux source tarball
# ---------------------------------------------------------------------------
2023-03-15 18:50:18 +03:00
quiet_cmd_archive_linux = ARCHIVE $@
cmd_archive_linux = \
git -C $( srctree) archive --output= $$ ( realpath $@ ) --prefix= $( basename $@ ) / $$ ( cat $<)
targets += linux.tar
linux.tar : .tmp_HEAD FORCE
$( call if_changed,archive_linux)
2023-02-15 04:20:24 +03:00
2005-04-17 02:20:36 +04:00
# rpm-pkg
2006-03-08 20:39:05 +03:00
# ---------------------------------------------------------------------------
2019-08-21 10:02:03 +03:00
PHONY += rpm-pkg
2023-02-15 04:20:25 +03: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 04:10:11 +03:00
--define= '_smp_mflags %{nil}'
2005-04-17 02:20:36 +04:00
2022-11-21 17:48:45 +03:00
# srcrpm-pkg
# ---------------------------------------------------------------------------
PHONY += srcrpm-pkg
2023-02-15 04:20:26 +03:00
srcrpm-pkg : linux .tar .gz
2022-11-21 17:48:45 +03:00
$( CONFIG_SHELL) $( MKSPEC) >$( objtree) /kernel.spec
2023-02-15 04:20:26 +03:00
+rpmbuild $( RPMOPTS) --target $( UTS_MACHINE) -linux -bs kernel.spec \
2023-03-15 18:50:17 +03:00
--define= '_smp_mflags %{nil}' --define= '_sourcedir rpmbuild/SOURCES' --define= '_srcrpmdir .'
2022-11-21 17:48:45 +03:00
2005-04-17 02:20:36 +04:00
# binrpm-pkg
2006-03-08 20:39:05 +03:00
# ---------------------------------------------------------------------------
2019-08-21 10:02:03 +03:00
PHONY += binrpm-pkg
binrpm-pkg :
2019-02-14 06:05:14 +03:00
$( MAKE) -f $( srctree) /Makefile
2013-04-13 23:21:15 +04:00
$( CONFIG_SHELL) $( MKSPEC) prebuilt > $( objtree) /binkernel.spec
2017-09-30 04:10:09 +03:00
+rpmbuild $( RPMOPTS) --define " _builddir $( objtree) " --target \
2022-07-14 08:02:41 +03:00
$( UTS_MACHINE) -linux -bb $( objtree) /binkernel.spec
2017-09-30 04:10:10 +03:00
2023-02-15 04:20:27 +03: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 04:20:28 +03: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 04:20:27 +03:00
2019-08-21 10:02:03 +03:00
PHONY += deb-pkg
2023-02-15 04:20:27 +03:00
deb-pkg : debian -orig
2023-02-15 04:20:24 +03:00
+dpkg-buildpackage -r$( KBUILD_PKG_ROOTCMD) -a$$ ( cat debian/arch) $( DPKG_FLAGS) \
2023-02-15 04:20:29 +03:00
--build= source,binary -nc -us -uc
2015-09-02 12:57:24 +03:00
2019-08-21 10:02:03 +03:00
PHONY += bindeb-pkg
2023-02-15 04:20:27 +03:00
bindeb-pkg : debian
2019-02-05 15:37:52 +03:00
+dpkg-buildpackage -r$( KBUILD_PKG_ROOTCMD) -a$$ ( cat debian/arch) $( DPKG_FLAGS) -b -nc -uc
2018-04-05 14:22:29 +03:00
2019-08-21 10:02:03 +03:00
PHONY += intdeb-pkg
intdeb-pkg :
2018-04-05 14:22:29 +03:00
+$( CONFIG_SHELL) $( srctree) /scripts/package/builddeb
2005-04-17 02:20:36 +04: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 14:07:34 +03:00
# snap-pkg
# ---------------------------------------------------------------------------
2019-08-21 10:02:03 +03: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 14:07:34 +03: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)
2023-02-15 04:20:31 +03:00
# dir-pkg tar*-pkg - tarball targets
2005-05-24 13:27:37 +04:00
# ---------------------------------------------------------------------------
2023-02-15 04:20:31 +03:00
tar-install : FORCE
$( Q) $( MAKE) -f $( srctree) /Makefile
+$( Q) $( srctree) /scripts/package/buildtar $@
2023-03-15 18:50:18 +03:00
quiet_cmd_tar = TAR $@
cmd_tar = cd $<; tar cf ../$@ --owner= root --group= root --sort= name *
linux-$(KERNELRELEASE)-$(ARCH).tar : tar -install
$( call cmd,tar)
2023-02-15 04:20:31 +03:00
PHONY += dir-pkg
dir-pkg : tar -install
@echo " Kernel tree successfully created in $< "
2023-03-15 18:50:18 +03:00
PHONY += tar-pkg
tar-pkg : linux -$( KERNELRELEASE ) -$( ARCH ) .tar
2023-02-15 04:20:31 +03:00
@:
2023-03-15 18:50:18 +03:00
tar%-pkg : linux -$( KERNELRELEASE ) -$( ARCH ) .tar .% FORCE
@:
2005-05-24 13:27:37 +04:00
2023-02-15 04:20:30 +03:00
# perf-tar*-src-pkg - generate a source tarball with perf source
2010-05-31 18:13:21 +04:00
# ---------------------------------------------------------------------------
2023-03-15 18:50:18 +03:00
.tmp_perf :
$( Q) mkdir .tmp_perf
2023-02-15 04:20:30 +03:00
2023-03-15 18:50:18 +03:00
.tmp_perf/HEAD : .tmp_HEAD | .tmp_perf
$( call cmd,copy)
2023-02-15 04:20:30 +03:00
quiet_cmd_perf_version_file = GEN $@
cmd_perf_version_file = cd $( srctree) /tools/perf; util/PERF-VERSION-GEN $( dir $( abspath $@ ) )
2023-03-15 18:50:18 +03:00
# PERF-VERSION-FILE and .tmp_HEAD are independent, but this avoids updating the
2023-02-15 04:20:30 +03:00
# timestamp of PERF-VERSION-FILE.
# The best is to fix tools/perf/util/PERF-VERSION-GEN.
2023-03-15 18:50:18 +03:00
.tmp_perf/PERF-VERSION-FILE : .tmp_HEAD $( srctree ) /tools /perf /util /PERF -VERSION -GEN | .tmp_perf
2023-02-15 04:20:30 +03:00
$( call cmd,perf_version_file)
2023-03-15 18:50:18 +03:00
quiet_cmd_archive_perf = ARCHIVE $@
cmd_archive_perf = \
git -C $( srctree) archive --output= $$ ( realpath $@ ) --prefix= $( basename $@ ) / \
--add-file= $$ ( realpath $( word 2, $^) ) \
--add-file= $$ ( realpath $( word 3, $^) ) \
$$ ( cat $( word 2, $^) ) ^{ tree} $$ ( cat $<)
2023-02-15 04:20:30 +03:00
2023-03-15 18:50:18 +03:00
targets += perf-$( KERNELVERSION) .tar
perf-$(KERNELVERSION).tar : tools /perf /MANIFEST .tmp_perf /HEAD .tmp_perf /PERF -VERSION -FILE FORCE
$( call if_changed,archive_perf)
PHONY += perf-tar-src-pkg
perf-tar-src-pkg : perf -$( KERNELVERSION ) .tar
@:
2023-02-15 04:20:30 +03:00
2023-03-15 18:50:18 +03:00
perf-tar%-src-pkg : perf -$( KERNELVERSION ) .tar .% FORCE
@:
2010-05-31 18:13:21 +04:00
2005-04-17 02:20:36 +04:00
# Help text displayed when executing 'make help'
# ---------------------------------------------------------------------------
2019-08-21 10:02:03 +03:00
PHONY += help
help :
2010-05-31 18:13:21 +04:00
@echo ' rpm-pkg - Build both source and binary RPM kernel packages'
2022-12-27 12:21:57 +03:00
@echo ' srcrpm-pkg - Build only the source kernel RPM package'
2015-09-02 12:57:24 +03: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 14:52:32 +03:00
@echo ' snap-pkg - Build only the binary kernel snap package'
@echo ' (will connect to external hosts)'
2019-11-04 16:11:44 +03:00
@echo ' dir-pkg - Build the kernel as a plain directory structure'
2010-05-31 18:13:21 +04: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 14:18:51 +03:00
@echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
2021-10-08 14:37:59 +03:00
@echo ' tarzst-pkg - Build the kernel as a zstd compressed tarball'
2023-02-15 04:20:30 +03: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 10:02:04 +03:00
2023-02-15 04:20:24 +03:00
PHONY += FORCE
FORCE :
2023-03-15 18:50:18 +03:00
# Read all saved command lines and dependencies for the $(targets) we
# may be building above, using $(if_changed{,_dep}). As an
# optimization, we don't need to read them if the target does not
# exist, we will rebuild anyway in that case.
existing-targets := $( wildcard $( sort $( targets) ) )
- i n c l u d e $( foreach f ,$ ( existing -targets ) ,$ ( dir $ ( f ) ) .$ ( notdir $ ( f ) ) .cmd )
2019-08-21 10:02:04 +03:00
.PHONY : $( PHONY )