KERNELRELEASE does not need to match the package version in changelog. Rather, it conventially matches what is called 'ABINAME', which is a part of the binary package names. Both are the same by default, but the former might be overridden by KDEB_PKGVERSION. In this case, the resulting package would not boot because /lib/modules/$(uname -r) does not point the module directory. Partially revert 3ab18a625ce4 ("kbuild: deb-pkg: improve the usability of source package"). Reported-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com> Fixes: 3ab18a625ce4 ("kbuild: deb-pkg: improve the usability of source package") Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Tested-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
16 lines
471 B
Bash
Executable File
16 lines
471 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# Set up CROSS_COMPILE if we are cross-compiling, but not called from the
|
|
# kernel toplevel Makefile
|
|
if [ -z "${CROSS_COMPILE}${cross_compiling}" -a "${DEB_HOST_ARCH}" != "${DEB_BUILD_ARCH}" ]; then
|
|
echo CROSS_COMPILE=${DEB_HOST_GNU_TYPE}-
|
|
fi
|
|
|
|
version=$(dpkg-parsechangelog -S Version)
|
|
debian_revision="${version##*-}"
|
|
|
|
if [ "${version}" != "${debian_revision}" ]; then
|
|
echo KBUILD_BUILD_VERSION=${debian_revision}
|
|
fi
|