]> git.ipfire.org Git - thirdparty/linux.git/blame - kernel/gen_kheaders.sh
Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[thirdparty/linux.git] / kernel / gen_kheaders.sh
CommitLineData
1463f74f 1#!/bin/sh
43d8ce9d
JFG
2# SPDX-License-Identifier: GPL-2.0
3
4# This script generates an archive consisting of kernel headers
f7b101d3 5# for CONFIG_IKHEADERS.
43d8ce9d 6set -e
7199ff7d 7sfile="$(readlink -f "$0")"
43d8ce9d
JFG
8outdir="$(pwd)"
9tarfile=$1
837962ca 10cpio_dir=$outdir/${tarfile%/*}/.tmp_cpio_dir
43d8ce9d 11
7199ff7d 12dir_list="
43d8ce9d
JFG
13include/
14arch/$SRCARCH/include/
15"
16
13e1df09
TW
17type cpio > /dev/null
18
43d8ce9d
JFG
19# Support incremental builds by skipping archive generation
20# if timestamps of files being archived are not changed.
21
22# This block is useful for debugging the incremental builds.
23# Uncomment it for debugging.
1457dc9e
JFG
24# if [ ! -f /tmp/iter ]; then iter=1; echo 1 > /tmp/iter;
25# else iter=$(($(cat /tmp/iter) + 1)); echo $iter > /tmp/iter; fi
0e11773e
MY
26# find $all_dirs -name "*.h" | xargs ls -l > /tmp/ls-$iter
27
28all_dirs=
29if [ "$building_out_of_srctree" ]; then
30 for d in $dir_list; do
31 all_dirs="$all_dirs $srctree/$d"
32 done
33fi
34all_dirs="$all_dirs $dir_list"
43d8ce9d 35
2df8220c
MY
36# include/generated/utsversion.h is ignored because it is generated after this
37# script is executed. (utsversion.h is unneeded for kheaders)
f276031b
MY
38#
39# When Kconfig regenerates include/generated/autoconf.h, its timestamp is
40# updated, but the contents might be still the same. When any CONFIG option is
0e0345b7 41# changed, Kconfig touches the corresponding timestamp file include/config/*.
f276031b
MY
42# Hence, the md5sum detects the configuration change anyway. We do not need to
43# check include/generated/autoconf.h explicitly.
44#
45# Ignore them for md5 calculation to avoid pointless regeneration.
0e11773e 46headers_md5="$(find $all_dirs -name "*.h" |
2df8220c 47 grep -v "include/generated/utsversion.h" |
0e11773e 48 grep -v "include/generated/autoconf.h" |
b60b7c2e 49 xargs ls -l | md5sum | cut -d ' ' -f1)"
0e11773e 50
7199ff7d
MY
51# Any changes to this script will also cause a rebuild of the archive.
52this_file_md5="$(ls -l $sfile | md5sum | cut -d ' ' -f1)"
43d8ce9d
JFG
53if [ -f $tarfile ]; then tarfile_md5="$(md5sum $tarfile | cut -d ' ' -f1)"; fi
54if [ -f kernel/kheaders.md5 ] &&
0e11773e
MY
55 [ "$(head -n 1 kernel/kheaders.md5)" = "$headers_md5" ] &&
56 [ "$(head -n 2 kernel/kheaders.md5 | tail -n 1)" = "$this_file_md5" ] &&
9a066357 57 [ "$(tail -n 1 kernel/kheaders.md5)" = "$tarfile_md5" ]; then
43d8ce9d
JFG
58 exit
59fi
60
c39013ee 61echo " GEN $tarfile"
43d8ce9d
JFG
62
63rm -rf $cpio_dir
64mkdir $cpio_dir
65
ea79e516 66if [ "$building_out_of_srctree" ]; then
1463f74f
MY
67 (
68 cd $srctree
69 for f in $dir_list
70 do find "$f" -name "*.h";
71 done | cpio --quiet -pd $cpio_dir
72 )
ea79e516 73fi
43d8ce9d 74
ea79e516
MY
75# The second CPIO can complain if files already exist which can happen with out
76# of tree builds having stale headers in srctree. Just silence CPIO for now.
7199ff7d
MY
77for f in $dir_list;
78 do find "$f" -name "*.h";
1e8ca62b 79done | cpio --quiet -pdu $cpio_dir >/dev/null 2>&1
43d8ce9d
JFG
80
81# Remove comments except SDPX lines
82find $cpio_dir -type f -print0 |
83 xargs -0 -P8 -n1 perl -pi -e 'BEGIN {undef $/;}; s/\/\*((?!SPDX).)*?\*\///smg;'
84
700dea5a 85# Create archive and try to normalize metadata for reproducibility.
49c386eb
MY
86tar "${KBUILD_BUILD_TIMESTAMP:+--mtime=$KBUILD_BUILD_TIMESTAMP}" \
87 --owner=0 --group=0 --sort=name --numeric-owner \
88 -I $XZ -cf $tarfile -C $cpio_dir/ . > /dev/null
43d8ce9d 89
0e11773e 90echo $headers_md5 > kernel/kheaders.md5
7199ff7d 91echo "$this_file_md5" >> kernel/kheaders.md5
43d8ce9d
JFG
92echo "$(md5sum $tarfile | cut -d ' ' -f1)" >> kernel/kheaders.md5
93
94rm -rf $cpio_dir