]> bbs.cooldavid.org Git - net-next-2.6.git/blame - scripts/mkcompile_h
kbuild: fix warning when domainname is not available
[net-next-2.6.git] / scripts / mkcompile_h
CommitLineData
1da177e4
LT
1TARGET=$1
2ARCH=$2
3SMP=$3
bd5bdd87
SR
4PREEMPT=$4
5CC=$5
1da177e4 6
d03fab43
MF
7vecho() { [ "${quiet}" = "silent_" ] || echo "$@" ; }
8
1da177e4
LT
9# If compile.h exists already and we don't own autoconf.h
10# (i.e. we're not the same user who did make *config), don't
11# modify compile.h
12# So "sudo make install" won't change the "compiled by <user>"
13# do "compiled by root"
14
15if [ -r $TARGET -a ! -O include/linux/autoconf.h ]; then
d03fab43 16 vecho " SKIPPED $TARGET"
1da177e4
LT
17 exit 0
18fi
19
20# Do not expand names
21set -f
22
87c94bfb
SR
23# Fix the language to get consistent output
24LC_ALL=C
25export LC_ALL
26
27if [ -z "$KBUILD_BUILD_VERSION" ]; then
28 if [ -r .version ]; then
29 VERSION=`cat .version`
30 else
31 VERSION=0
32 echo 0 > .version
33 fi
1da177e4 34else
87c94bfb 35 VERSION=$KBUILD_BUILD_VERSION
1da177e4
LT
36fi
37
87c94bfb
SR
38if [ -z "$KBUILD_BUILD_TIMESTAMP" ]; then
39 TIMESTAMP=`date`
40else
41 TIMESTAMP=$KBUILD_BUILD_TIMESTAMP
42fi
1da177e4
LT
43
44UTS_VERSION="#$VERSION"
bd5bdd87
SR
45CONFIG_FLAGS=""
46if [ -n "$SMP" ] ; then CONFIG_FLAGS="SMP"; fi
47if [ -n "$PREEMPT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT"; fi
87c94bfb 48UTS_VERSION="$UTS_VERSION $CONFIG_FLAGS $TIMESTAMP"
1da177e4
LT
49
50# Truncate to maximum length
51
52UTS_LEN=64
53UTS_TRUNCATE="sed -e s/\(.\{1,$UTS_LEN\}\).*/\1/"
54
55# Generate a temporary compile.h
56
57( echo /\* This file is auto generated, version $VERSION \*/
bd5bdd87
SR
58 if [ -n "$CONFIG_FLAGS" ] ; then echo "/* $CONFIG_FLAGS */"; fi
59
1da177e4
LT
60 echo \#define UTS_MACHINE \"$ARCH\"
61
62 echo \#define UTS_VERSION \"`echo $UTS_VERSION | $UTS_TRUNCATE`\"
63
87c94bfb 64 echo \#define LINUX_COMPILE_TIME \"`date +%T`\"
1da177e4
LT
65 echo \#define LINUX_COMPILE_BY \"`whoami`\"
66 echo \#define LINUX_COMPILE_HOST \"`hostname | $UTS_TRUNCATE`\"
67
68 if [ -x /bin/dnsdomainname ]; then
9c3049c0 69 domain=`dnsdomainname 2> /dev/null`
1da177e4 70 elif [ -x /bin/domainname ]; then
9c3049c0
FC
71 domain=`domainname 2> /dev/null`
72 fi
73
74 if [ -n "$domain" ]; then
75 echo \#define LINUX_COMPILE_DOMAIN \"`echo $domain | $UTS_TRUNCATE`\"
1da177e4
LT
76 else
77 echo \#define LINUX_COMPILE_DOMAIN
78 fi
79
87c94bfb 80 echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -n 1`\"
1da177e4
LT
81) > .tmpcompile
82
83# Only replace the real compile.h if the new one is different,
84# in order to preserve the timestamp and avoid unnecessary
85# recompilations.
86# We don't consider the file changed if only the date/time changed.
87# A kernel config change will increase the generation number, thus
88# causing compile.h to be updated (including date/time) due to the
89# changed comment in the
90# first line.
91
92if [ -r $TARGET ] && \
93 grep -v 'UTS_VERSION\|LINUX_COMPILE_TIME' $TARGET > .tmpver.1 && \
94 grep -v 'UTS_VERSION\|LINUX_COMPILE_TIME' .tmpcompile > .tmpver.2 && \
95 cmp -s .tmpver.1 .tmpver.2; then
96 rm -f .tmpcompile
97else
d03fab43 98 vecho " UPD $TARGET"
1da177e4
LT
99 mv -f .tmpcompile $TARGET
100fi
101rm -f .tmpver.1 .tmpver.2