Merge tag 'xfs-5.7-merge-12' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[linux-2.6-microblaze.git] / scripts / mkcompile_h
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3
4 TARGET=$1
5 ARCH=$2
6 SMP=$3
7 PREEMPT=$4
8 PREEMPT_RT=$5
9 CC=$6
10
11 vecho() { [ "${quiet}" = "silent_" ] || echo "$@" ; }
12
13 # Do not expand names
14 set -f
15
16 # Fix the language to get consistent output
17 LC_ALL=C
18 export LC_ALL
19
20 if [ -z "$KBUILD_BUILD_VERSION" ]; then
21         VERSION=$(cat .version 2>/dev/null || echo 1)
22 else
23         VERSION=$KBUILD_BUILD_VERSION
24 fi
25
26 if [ -z "$KBUILD_BUILD_TIMESTAMP" ]; then
27         TIMESTAMP=`date`
28 else
29         TIMESTAMP=$KBUILD_BUILD_TIMESTAMP
30 fi
31 if test -z "$KBUILD_BUILD_USER"; then
32         LINUX_COMPILE_BY=$(whoami | sed 's/\\/\\\\/')
33 else
34         LINUX_COMPILE_BY=$KBUILD_BUILD_USER
35 fi
36 if test -z "$KBUILD_BUILD_HOST"; then
37         LINUX_COMPILE_HOST=`hostname`
38 else
39         LINUX_COMPILE_HOST=$KBUILD_BUILD_HOST
40 fi
41
42 UTS_VERSION="#$VERSION"
43 CONFIG_FLAGS=""
44 if [ -n "$SMP" ] ; then CONFIG_FLAGS="SMP"; fi
45 if [ -n "$PREEMPT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT"; fi
46 if [ -n "$PREEMPT_RT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT_RT"; fi
47
48 # Truncate to maximum length
49 UTS_LEN=64
50 UTS_VERSION="$(echo $UTS_VERSION $CONFIG_FLAGS $TIMESTAMP | cut -b -$UTS_LEN)"
51
52 # Generate a temporary compile.h
53
54 { echo /\* This file is auto generated, version $VERSION \*/
55   if [ -n "$CONFIG_FLAGS" ] ; then echo "/* $CONFIG_FLAGS */"; fi
56
57   echo \#define UTS_MACHINE \"$ARCH\"
58
59   echo \#define UTS_VERSION \"$UTS_VERSION\"
60
61   printf '#define LINUX_COMPILE_BY "%s"\n' "$LINUX_COMPILE_BY"
62   echo \#define LINUX_COMPILE_HOST \"$LINUX_COMPILE_HOST\"
63
64   echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | grep ' version ' | sed 's/[[:space:]]*$//'`\"
65 } > .tmpcompile
66
67 # Only replace the real compile.h if the new one is different,
68 # in order to preserve the timestamp and avoid unnecessary
69 # recompilations.
70 # We don't consider the file changed if only the date/time changed.
71 # A kernel config change will increase the generation number, thus
72 # causing compile.h to be updated (including date/time) due to the
73 # changed comment in the
74 # first line.
75
76 if [ -r $TARGET ] && \
77       grep -v 'UTS_VERSION' $TARGET > .tmpver.1 && \
78       grep -v 'UTS_VERSION' .tmpcompile > .tmpver.2 && \
79       cmp -s .tmpver.1 .tmpver.2; then
80    rm -f .tmpcompile
81 else
82    vecho "  UPD     $TARGET"
83    mv -f .tmpcompile $TARGET
84 fi
85 rm -f .tmpver.1 .tmpver.2