]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - scripts/mkcompile_h
kbuild: Use uname for LINUX_COMPILE_HOST detection
[thirdparty/kernel/stable.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
4b950bb9 8PREEMPT_RT=$5
9a950154 9CC_VERSION="$6"
4dcc9a88 10LD=$7
1da177e4 11
d03fab43
MF
12vecho() { [ "${quiet}" = "silent_" ] || echo "$@" ; }
13
1da177e4
LT
14# Do not expand names
15set -f
16
87c94bfb
SR
17# Fix the language to get consistent output
18LC_ALL=C
19export LC_ALL
20
21if [ -z "$KBUILD_BUILD_VERSION" ]; then
37131ec4 22 VERSION=$(cat .version 2>/dev/null || echo 1)
1da177e4 23else
87c94bfb 24 VERSION=$KBUILD_BUILD_VERSION
1da177e4
LT
25fi
26
87c94bfb
SR
27if [ -z "$KBUILD_BUILD_TIMESTAMP" ]; then
28 TIMESTAMP=`date`
29else
30 TIMESTAMP=$KBUILD_BUILD_TIMESTAMP
31fi
53e6892c 32if test -z "$KBUILD_BUILD_USER"; then
f0772604 33 LINUX_COMPILE_BY=$(whoami | sed 's/\\/\\\\/')
53e6892c
MM
34else
35 LINUX_COMPILE_BY=$KBUILD_BUILD_USER
36fi
37if test -z "$KBUILD_BUILD_HOST"; then
1e66d50a 38 LINUX_COMPILE_HOST=`uname -n`
53e6892c
MM
39else
40 LINUX_COMPILE_HOST=$KBUILD_BUILD_HOST
41fi
1da177e4
LT
42
43UTS_VERSION="#$VERSION"
bd5bdd87
SR
44CONFIG_FLAGS=""
45if [ -n "$SMP" ] ; then CONFIG_FLAGS="SMP"; fi
46if [ -n "$PREEMPT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT"; fi
4b950bb9 47if [ -n "$PREEMPT_RT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT_RT"; fi
1da177e4
LT
48
49# Truncate to maximum length
1da177e4 50UTS_LEN=64
e8193650 51UTS_VERSION="$(echo $UTS_VERSION $CONFIG_FLAGS $TIMESTAMP | cut -b -$UTS_LEN)"
1da177e4
LT
52
53# Generate a temporary compile.h
54
b79c6aa6 55{ echo /\* This file is auto generated, version $VERSION \*/
bd5bdd87 56 if [ -n "$CONFIG_FLAGS" ] ; then echo "/* $CONFIG_FLAGS */"; fi
38385f8f 57
1da177e4
LT
58 echo \#define UTS_MACHINE \"$ARCH\"
59
e8193650 60 echo \#define UTS_VERSION \"$UTS_VERSION\"
1da177e4 61
c8f3dea9 62 printf '#define LINUX_COMPILE_BY "%s"\n' "$LINUX_COMPILE_BY"
e8193650 63 echo \#define LINUX_COMPILE_HOST \"$LINUX_COMPILE_HOST\"
1da177e4 64
4dcc9a88
KC
65 LD_VERSION=$($LD -v | head -n1 | sed 's/(compatible with [^)]*)//' \
66 | sed 's/[[:space:]]*$//')
67 printf '#define LINUX_COMPILER "%s"\n' "$CC_VERSION, $LD_VERSION"
b79c6aa6 68} > .tmpcompile
1da177e4
LT
69
70# Only replace the real compile.h if the new one is different,
71# in order to preserve the timestamp and avoid unnecessary
72# recompilations.
73# We don't consider the file changed if only the date/time changed.
74# A kernel config change will increase the generation number, thus
38385f8f 75# causing compile.h to be updated (including date/time) due to the
1da177e4
LT
76# changed comment in the
77# first line.
78
79if [ -r $TARGET ] && \
061296dc
MM
80 grep -v 'UTS_VERSION' $TARGET > .tmpver.1 && \
81 grep -v 'UTS_VERSION' .tmpcompile > .tmpver.2 && \
1da177e4
LT
82 cmp -s .tmpver.1 .tmpver.2; then
83 rm -f .tmpcompile
84else
d03fab43 85 vecho " UPD $TARGET"
1da177e4
LT
86 mv -f .tmpcompile $TARGET
87fi
88rm -f .tmpver.1 .tmpver.2