blob: 5a0fc0b0403a6c46cd41a0b73a07846eb118a016 [file] [log] [blame]
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -04001#!/bin/bash
2# SPDX-License-Identifier: GPL-2.0
3
4# This script generates an archive consisting of kernel headers
Joel Fernandes (Google)f7b101d2019-05-15 17:35:51 -04005# for CONFIG_IKHEADERS.
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -04006set -e
Masahiro Yamada7199ff72019-07-01 09:58:44 +09007sfile="$(readlink -f "$0")"
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -04008outdir="$(pwd)"
9tarfile=$1
10cpio_dir=$outdir/$tarfile.tmp
11
Masahiro Yamada7199ff72019-07-01 09:58:44 +090012dir_list="
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040013include/
14arch/$SRCARCH/include/
15"
16
17# Support incremental builds by skipping archive generation
18# if timestamps of files being archived are not changed.
19
20# This block is useful for debugging the incremental builds.
21# Uncomment it for debugging.
Joel Fernandes (Google)1457dc92019-05-15 17:35:52 -040022# if [ ! -f /tmp/iter ]; then iter=1; echo 1 > /tmp/iter;
23# else iter=$(($(cat /tmp/iter) + 1)); echo $iter > /tmp/iter; fi
Masahiro Yamada7199ff72019-07-01 09:58:44 +090024# find $src_file_list -name "*.h" | xargs ls -l > /tmp/src-ls-$iter
25# find $obj_file_list -name "*.h" | xargs ls -l > /tmp/obj-ls-$iter
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040026
27# include/generated/compile.h is ignored because it is touched even when none
28# of the source files changed. This causes pointless regeneration, so let us
29# ignore them for md5 calculation.
Masahiro Yamada7199ff72019-07-01 09:58:44 +090030pushd $srctree > /dev/null
31src_files_md5="$(find $dir_list -name "*.h" |
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040032 grep -v "include/generated/compile.h" |
Joel Fernandes (Google)1457dc92019-05-15 17:35:52 -040033 grep -v "include/generated/autoconf.h" |
Masahiro Yamadab60b7c22019-07-01 09:58:43 +090034 xargs ls -l | md5sum | cut -d ' ' -f1)"
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040035popd > /dev/null
Masahiro Yamada7199ff72019-07-01 09:58:44 +090036obj_files_md5="$(find $dir_list -name "*.h" |
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040037 grep -v "include/generated/compile.h" |
Joel Fernandes (Google)1457dc92019-05-15 17:35:52 -040038 grep -v "include/generated/autoconf.h" |
Masahiro Yamadab60b7c22019-07-01 09:58:43 +090039 xargs ls -l | md5sum | cut -d ' ' -f1)"
Masahiro Yamada7199ff72019-07-01 09:58:44 +090040# Any changes to this script will also cause a rebuild of the archive.
41this_file_md5="$(ls -l $sfile | md5sum | cut -d ' ' -f1)"
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040042if [ -f $tarfile ]; then tarfile_md5="$(md5sum $tarfile | cut -d ' ' -f1)"; fi
43if [ -f kernel/kheaders.md5 ] &&
44 [ "$(cat kernel/kheaders.md5|head -1)" == "$src_files_md5" ] &&
45 [ "$(cat kernel/kheaders.md5|head -2|tail -1)" == "$obj_files_md5" ] &&
Masahiro Yamada7199ff72019-07-01 09:58:44 +090046 [ "$(cat kernel/kheaders.md5|head -3|tail -1)" == "$this_file_md5" ] &&
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040047 [ "$(cat kernel/kheaders.md5|tail -1)" == "$tarfile_md5" ]; then
48 exit
49fi
50
51if [ "${quiet}" != "silent_" ]; then
52 echo " GEN $tarfile"
53fi
54
55rm -rf $cpio_dir
56mkdir $cpio_dir
57
Masahiro Yamada7199ff72019-07-01 09:58:44 +090058pushd $srctree > /dev/null
59for f in $dir_list;
60 do find "$f" -name "*.h";
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040061done | cpio --quiet -pd $cpio_dir
62popd > /dev/null
63
64# The second CPIO can complain if files already exist which can
65# happen with out of tree builds. Just silence CPIO for now.
Masahiro Yamada7199ff72019-07-01 09:58:44 +090066for f in $dir_list;
67 do find "$f" -name "*.h";
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040068done | cpio --quiet -pd $cpio_dir >/dev/null 2>&1
69
70# Remove comments except SDPX lines
71find $cpio_dir -type f -print0 |
72 xargs -0 -P8 -n1 perl -pi -e 'BEGIN {undef $/;}; s/\/\*((?!SPDX).)*?\*\///smg;'
73
Dmitry Goldin700dea52019-10-09 13:42:14 +000074# Create archive and try to normalize metadata for reproducibility.
75# For compatibility with older versions of tar, files are fed to tar
76# pre-sorted, as --sort=name might not be available.
77find $cpio_dir -printf "./%P\n" | LC_ALL=C sort | \
78 tar "${KBUILD_BUILD_TIMESTAMP:+--mtime=$KBUILD_BUILD_TIMESTAMP}" \
79 --owner=0 --group=0 --numeric-owner --no-recursion \
80 -Jcf $tarfile -C $cpio_dir/ -T - > /dev/null
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040081
Joel Fernandes (Google)1457dc92019-05-15 17:35:52 -040082echo "$src_files_md5" > kernel/kheaders.md5
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040083echo "$obj_files_md5" >> kernel/kheaders.md5
Masahiro Yamada7199ff72019-07-01 09:58:44 +090084echo "$this_file_md5" >> kernel/kheaders.md5
Joel Fernandes (Google)43d8ce92019-04-26 15:04:29 -040085echo "$(md5sum $tarfile | cut -d ' ' -f1)" >> kernel/kheaders.md5
86
87rm -rf $cpio_dir