]> git.ipfire.org Git - people/ms/linux.git/blame - scripts/mkcompile_h
Merge tag 'soc-fixes-6.0-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[people/ms/linux.git] / scripts / mkcompile_h
CommitLineData
17c5ca98 1#!/bin/sh
b2441318 2# SPDX-License-Identifier: GPL-2.0
17c5ca98 3
1da177e4
LT
4TARGET=$1
5ARCH=$2
6SMP=$3
bd5bdd87 7PREEMPT=$4
a0a7e453
FW
8PREEMPT_DYNAMIC=$5
9PREEMPT_RT=$6
10CC_VERSION="$7"
11LD=$8
1da177e4 12
1da177e4
LT
13# Do not expand names
14set -f
15
87c94bfb
SR
16# Fix the language to get consistent output
17LC_ALL=C
18export LC_ALL
19
20if [ -z "$KBUILD_BUILD_VERSION" ]; then
37131ec4 21 VERSION=$(cat .version 2>/dev/null || echo 1)
1da177e4 22else
87c94bfb 23 VERSION=$KBUILD_BUILD_VERSION
1da177e4
LT
24fi
25
87c94bfb
SR
26if [ -z "$KBUILD_BUILD_TIMESTAMP" ]; then
27 TIMESTAMP=`date`
28else
29 TIMESTAMP=$KBUILD_BUILD_TIMESTAMP
30fi
53e6892c 31if test -z "$KBUILD_BUILD_USER"; then
f0772604 32 LINUX_COMPILE_BY=$(whoami | sed 's/\\/\\\\/')
53e6892c
MM
33else
34 LINUX_COMPILE_BY=$KBUILD_BUILD_USER
35fi
36if test -z "$KBUILD_BUILD_HOST"; then
1e66d50a 37 LINUX_COMPILE_HOST=`uname -n`
53e6892c
MM
38else
39 LINUX_COMPILE_HOST=$KBUILD_BUILD_HOST
40fi
1da177e4
LT
41
42UTS_VERSION="#$VERSION"
bd5bdd87
SR
43CONFIG_FLAGS=""
44if [ -n "$SMP" ] ; then CONFIG_FLAGS="SMP"; fi
a0a7e453
FW
45
46if [ -n "$PREEMPT_RT" ] ; then
47 CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT_RT"
48elif [ -n "$PREEMPT_DYNAMIC" ] ; then
49 CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT_DYNAMIC"
50elif [ -n "$PREEMPT" ] ; then
51 CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT"
52fi
1da177e4
LT
53
54# Truncate to maximum length
1da177e4 55UTS_LEN=64
e8193650 56UTS_VERSION="$(echo $UTS_VERSION $CONFIG_FLAGS $TIMESTAMP | cut -b -$UTS_LEN)"
1da177e4
LT
57
58# Generate a temporary compile.h
59
b79c6aa6 60{ echo /\* This file is auto generated, version $VERSION \*/
bd5bdd87 61 if [ -n "$CONFIG_FLAGS" ] ; then echo "/* $CONFIG_FLAGS */"; fi
38385f8f 62
1da177e4
LT
63 echo \#define UTS_MACHINE \"$ARCH\"
64
e8193650 65 echo \#define UTS_VERSION \"$UTS_VERSION\"
1da177e4 66
c8f3dea9 67 printf '#define LINUX_COMPILE_BY "%s"\n' "$LINUX_COMPILE_BY"
e8193650 68 echo \#define LINUX_COMPILE_HOST \"$LINUX_COMPILE_HOST\"
1da177e4 69
4dcc9a88
KC
70 LD_VERSION=$($LD -v | head -n1 | sed 's/(compatible with [^)]*)//' \
71 | sed 's/[[:space:]]*$//')
72 printf '#define LINUX_COMPILER "%s"\n' "$CC_VERSION, $LD_VERSION"
b79c6aa6 73} > .tmpcompile
1da177e4
LT
74
75# Only replace the real compile.h if the new one is different,
76# in order to preserve the timestamp and avoid unnecessary
77# recompilations.
a979522a
MM
78# We don't consider the file changed if only the date/time changed,
79# unless KBUILD_BUILD_TIMESTAMP was explicitly set (e.g. for
80# reproducible builds with that value referring to a commit timestamp).
1da177e4 81# A kernel config change will increase the generation number, thus
38385f8f 82# causing compile.h to be updated (including date/time) due to the
1da177e4
LT
83# changed comment in the
84# first line.
85
a979522a
MM
86if [ -z "$KBUILD_BUILD_TIMESTAMP" ]; then
87 IGNORE_PATTERN="UTS_VERSION"
88else
89 IGNORE_PATTERN="NOT_A_PATTERN_TO_BE_MATCHED"
90fi
91
1da177e4 92if [ -r $TARGET ] && \
a979522a
MM
93 grep -v $IGNORE_PATTERN $TARGET > .tmpver.1 && \
94 grep -v $IGNORE_PATTERN .tmpcompile > .tmpver.2 && \
1da177e4
LT
95 cmp -s .tmpver.1 .tmpver.2; then
96 rm -f .tmpcompile
97else
c39013ee 98 echo " UPD $TARGET"
1da177e4
LT
99 mv -f .tmpcompile $TARGET
100fi
101rm -f .tmpver.1 .tmpver.2