mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	- Support multiple hook locations for maint scripts of Debian package
 
  - Remove 'cpio' from the build tool requirement
 
  - Introduce gendwarfksyms tool, which computes CRCs for export symbols
    based on the DWARF information
 
  - Support CONFIG_MODVERSIONS for Rust
 
  - Resolve all conflicts in the genksyms parser
 
  - Fix several syntax errors in genksyms
 -----BEGIN PGP SIGNATURE-----
 
 iQJJBAABCgAzFiEEbmPs18K1szRHjPqEPYsBB53g2wYFAmedJ7AVHG1hc2FoaXJv
 eUBrZXJuZWwub3JnAAoJED2LAQed4NsGBs0P/1svrWxVRdD7XFtM+UykQqf2R/be
 SnZDeeviqdbGr1J0X5FM/pjaeOb1BPnXsr6O67QaWhyVnpWUviBwwYG2NrCDsx9k
 AaMVsROzpDIeoMhMNeYVs+/SYhA8Jndnd4BOH5CBbo52k4/BLqhU9LXLncLgjZbF
 nys30TilwOaylKq2FHFVI1GhTCQtKKbq+tIxE1SKkHZ1LsSaFphe/eCHMpcOvQb+
 zIFHMm2eIcSlS8TCONFeTnw7NdeCVldYbPCyNAV+nC7Ow7VM8Ws1fq5vsKeH3TGE
 +3qtgQS41KpccNRdp4cTvy6p9iBEvpAvk1BAAOZ347EtLXrNNhngg65CbjyCUt7H
 yBpgWZ6GAGq2yExX5bHbbFHb/n4I3HhkZKeaFDZ3VnMPnni4zdbBqD+sBSI3yHLC
 LUh1NI8gIHjD4bIazbjxWMAQlamQNVNMaHkHqGjro2yIbLL1i2mqMdXuzYhAVwrx
 al7hv357fVPwQ1Gfin7R23T4/NqBTB+1IJnYTBYnnAFnUIAdhsuu9YkX8I97i6yu
 mdTrGROpEYL0GZTE+1LGz6V9DZfQHP8GZ5fDAU1X/f8Js9xkn1lHFhFCg/xM5f9j
 RnwHdiRbvq6uL40/zkinlcpPnGWJkAXWgZqlc0ZbwW8v/vKI51Uo0qUxlVSeu2uH
 mQG30SibArJFPpUN
 =D553
 -----END PGP SIGNATURE-----
Merge tag 'kbuild-v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
Pull Kbuild updates from Masahiro Yamada:
 - Support multiple hook locations for maint scripts of Debian package
 - Remove 'cpio' from the build tool requirement
 - Introduce gendwarfksyms tool, which computes CRCs for export symbols
   based on the DWARF information
 - Support CONFIG_MODVERSIONS for Rust
 - Resolve all conflicts in the genksyms parser
 - Fix several syntax errors in genksyms
* tag 'kbuild-v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: (64 commits)
  kbuild: fix Clang LTO with CONFIG_OBJTOOL=n
  kbuild: Strip runtime const RELA sections correctly
  kconfig: fix memory leak in sym_warn_unmet_dep()
  kconfig: fix file name in warnings when loading KCONFIG_DEFCONFIG_LIST
  genksyms: fix syntax error for attribute before init-declarator
  genksyms: fix syntax error for builtin (u)int*x*_t types
  genksyms: fix syntax error for attribute after 'union'
  genksyms: fix syntax error for attribute after 'struct'
  genksyms: fix syntax error for attribute after abstact_declarator
  genksyms: fix syntax error for attribute before nested_declarator
  genksyms: fix syntax error for attribute before abstract_declarator
  genksyms: decouple ATTRIBUTE_PHRASE from type-qualifier
  genksyms: record attributes consistently for init-declarator
  genksyms: restrict direct-declarator to take one parameter-type-list
  genksyms: restrict direct-abstract-declarator to take one parameter-type-list
  genksyms: remove Makefile hack
  genksyms: fix last 3 shift/reduce conflicts
  genksyms: fix 6 shift/reduce conflicts and 5 reduce/reduce conflicts
  genksyms: reduce type_qualifier directly to decl_specifier
  genksyms: rename cvar_qualifier to type_qualifier
  ...
		
	
			
		
			
				
	
	
		
			100 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
# SPDX-License-Identifier: GPL-2.0
 | 
						|
 | 
						|
# This script generates an archive consisting of kernel headers
 | 
						|
# for CONFIG_IKHEADERS.
 | 
						|
set -e
 | 
						|
sfile="$(readlink -f "$0")"
 | 
						|
outdir="$(pwd)"
 | 
						|
tarfile=$1
 | 
						|
tmpdir=$outdir/${tarfile%/*}/.tmp_dir
 | 
						|
 | 
						|
dir_list="
 | 
						|
include/
 | 
						|
arch/$SRCARCH/include/
 | 
						|
"
 | 
						|
 | 
						|
# Support incremental builds by skipping archive generation
 | 
						|
# if timestamps of files being archived are not changed.
 | 
						|
 | 
						|
# This block is useful for debugging the incremental builds.
 | 
						|
# Uncomment it for debugging.
 | 
						|
# if [ ! -f /tmp/iter ]; then iter=1; echo 1 > /tmp/iter;
 | 
						|
# else iter=$(($(cat /tmp/iter) + 1)); echo $iter > /tmp/iter; fi
 | 
						|
# find $all_dirs -name "*.h" | xargs ls -l > /tmp/ls-$iter
 | 
						|
 | 
						|
all_dirs=
 | 
						|
if [ "$building_out_of_srctree" ]; then
 | 
						|
	for d in $dir_list; do
 | 
						|
		all_dirs="$all_dirs $srctree/$d"
 | 
						|
	done
 | 
						|
fi
 | 
						|
all_dirs="$all_dirs $dir_list"
 | 
						|
 | 
						|
# include/generated/utsversion.h is ignored because it is generated after this
 | 
						|
# script is executed. (utsversion.h is unneeded for kheaders)
 | 
						|
#
 | 
						|
# When Kconfig regenerates include/generated/autoconf.h, its timestamp is
 | 
						|
# updated, but the contents might be still the same. When any CONFIG option is
 | 
						|
# changed, Kconfig touches the corresponding timestamp file include/config/*.
 | 
						|
# Hence, the md5sum detects the configuration change anyway. We do not need to
 | 
						|
# check include/generated/autoconf.h explicitly.
 | 
						|
#
 | 
						|
# Ignore them for md5 calculation to avoid pointless regeneration.
 | 
						|
headers_md5="$(find $all_dirs -name "*.h" -a			\
 | 
						|
		! -path include/generated/utsversion.h -a	\
 | 
						|
		! -path include/generated/autoconf.h		|
 | 
						|
		xargs ls -l | md5sum | cut -d ' ' -f1)"
 | 
						|
 | 
						|
# Any changes to this script will also cause a rebuild of the archive.
 | 
						|
this_file_md5="$(ls -l $sfile | md5sum | cut -d ' ' -f1)"
 | 
						|
if [ -f $tarfile ]; then tarfile_md5="$(md5sum $tarfile | cut -d ' ' -f1)"; fi
 | 
						|
if [ -f kernel/kheaders.md5 ] &&
 | 
						|
	[ "$(head -n 1 kernel/kheaders.md5)" = "$headers_md5" ] &&
 | 
						|
	[ "$(head -n 2 kernel/kheaders.md5 | tail -n 1)" = "$this_file_md5" ] &&
 | 
						|
	[ "$(tail -n 1 kernel/kheaders.md5)" = "$tarfile_md5" ]; then
 | 
						|
		exit
 | 
						|
fi
 | 
						|
 | 
						|
echo "  GEN     $tarfile"
 | 
						|
 | 
						|
rm -rf "${tmpdir}"
 | 
						|
mkdir "${tmpdir}"
 | 
						|
 | 
						|
if [ "$building_out_of_srctree" ]; then
 | 
						|
	(
 | 
						|
		cd $srctree
 | 
						|
		for f in $dir_list
 | 
						|
			do find "$f" -name "*.h";
 | 
						|
		done | tar -c -f - -T - | tar -xf - -C "${tmpdir}"
 | 
						|
	)
 | 
						|
fi
 | 
						|
 | 
						|
for f in $dir_list;
 | 
						|
	do find "$f" -name "*.h";
 | 
						|
done | tar -c -f - -T - | tar -xf - -C "${tmpdir}"
 | 
						|
 | 
						|
# Always exclude include/generated/utsversion.h
 | 
						|
# Otherwise, the contents of the tarball may vary depending on the build steps.
 | 
						|
rm -f "${tmpdir}/include/generated/utsversion.h"
 | 
						|
 | 
						|
# Remove comments except SDPX lines
 | 
						|
# Use a temporary file to store directory contents to prevent find/xargs from
 | 
						|
# seeing temporary files created by perl.
 | 
						|
find "${tmpdir}" -type f -print0 > "${tmpdir}.contents.txt"
 | 
						|
xargs -0 -P8 -n1 \
 | 
						|
	perl -pi -e 'BEGIN {undef $/;}; s/\/\*((?!SPDX).)*?\*\///smg;' \
 | 
						|
	< "${tmpdir}.contents.txt"
 | 
						|
rm -f "${tmpdir}.contents.txt"
 | 
						|
 | 
						|
# Create archive and try to normalize metadata for reproducibility.
 | 
						|
tar "${KBUILD_BUILD_TIMESTAMP:+--mtime=$KBUILD_BUILD_TIMESTAMP}" \
 | 
						|
    --exclude=".__afs*" --exclude=".nfs*" \
 | 
						|
    --owner=0 --group=0 --sort=name --numeric-owner --mode=u=rw,go=r,a+X \
 | 
						|
    -I $XZ -cf $tarfile -C "${tmpdir}/" . > /dev/null
 | 
						|
 | 
						|
echo $headers_md5 > kernel/kheaders.md5
 | 
						|
echo "$this_file_md5" >> kernel/kheaders.md5
 | 
						|
echo "$(md5sum $tarfile | cut -d ' ' -f1)" >> kernel/kheaders.md5
 | 
						|
 | 
						|
rm -rf "${tmpdir}"
 |