]> git.ipfire.org Git - people/ms/linux.git/blame - scripts/mkcompile_h
kconfig: qconf: Fix a few alignment issues
[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
4b950bb9
TG
8PREEMPT_RT=$5
9CC=$6
1da177e4 10
d03fab43
MF
11vecho() { [ "${quiet}" = "silent_" ] || echo "$@" ; }
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
37 LINUX_COMPILE_HOST=`hostname`
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
45if [ -n "$PREEMPT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT"; fi
4b950bb9 46if [ -n "$PREEMPT_RT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT_RT"; fi
1da177e4
LT
47
48# Truncate to maximum length
1da177e4 49UTS_LEN=64
e8193650 50UTS_VERSION="$(echo $UTS_VERSION $CONFIG_FLAGS $TIMESTAMP | cut -b -$UTS_LEN)"
1da177e4
LT
51
52# Generate a temporary compile.h
53
b79c6aa6 54{ echo /\* This file is auto generated, version $VERSION \*/
bd5bdd87 55 if [ -n "$CONFIG_FLAGS" ] ; then echo "/* $CONFIG_FLAGS */"; fi
38385f8f 56
1da177e4
LT
57 echo \#define UTS_MACHINE \"$ARCH\"
58
e8193650 59 echo \#define UTS_VERSION \"$UTS_VERSION\"
1da177e4 60
c8f3dea9 61 printf '#define LINUX_COMPILE_BY "%s"\n' "$LINUX_COMPILE_BY"
e8193650 62 echo \#define LINUX_COMPILE_HOST \"$LINUX_COMPILE_HOST\"
1da177e4 63
adcc3f7c 64 echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | grep ' version ' | sed 's/[[:space:]]*$//'`\"
b79c6aa6 65} > .tmpcompile
1da177e4
LT
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
38385f8f 72# causing compile.h to be updated (including date/time) due to the
1da177e4
LT
73# changed comment in the
74# first line.
75
76if [ -r $TARGET ] && \
061296dc
MM
77 grep -v 'UTS_VERSION' $TARGET > .tmpver.1 && \
78 grep -v 'UTS_VERSION' .tmpcompile > .tmpver.2 && \
1da177e4
LT
79 cmp -s .tmpver.1 .tmpver.2; then
80 rm -f .tmpcompile
81else
d03fab43 82 vecho " UPD $TARGET"
1da177e4
LT
83 mv -f .tmpcompile $TARGET
84fi
85rm -f .tmpver.1 .tmpver.2