diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-06-29 14:58:57 +0200 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2012-03-13 12:40:21 -0500 |
commit | bd34f0ca20fd4e5d678d6d0f4b3c4d3424fe4bec (patch) | |
tree | ecf94c8f4b2c5b114be8850957a2c149879b2978 /scripts/mkcompile_h | |
parent | 53c222d56d5425d3c76aaafeb374845d5ce8de84 (diff) |
kconfig-preempt-rt-full.patchv3.2.10-rt18
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'scripts/mkcompile_h')
-rwxr-xr-x | scripts/mkcompile_h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/mkcompile_h b/scripts/mkcompile_h index f221ddf69080..5f440097f6d2 100755 --- a/scripts/mkcompile_h +++ b/scripts/mkcompile_h @@ -4,7 +4,8 @@ TARGET=$1 ARCH=$2 SMP=$3 PREEMPT=$4 -CC=$5 +RT=$5 +CC=$6 vecho() { [ "${quiet}" = "silent_" ] || echo "$@" ; } @@ -57,6 +58,7 @@ UTS_VERSION="#$VERSION" CONFIG_FLAGS="" if [ -n "$SMP" ] ; then CONFIG_FLAGS="SMP"; fi if [ -n "$PREEMPT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT"; fi +if [ -n "$RT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS RT"; fi UTS_VERSION="$UTS_VERSION $CONFIG_FLAGS $TIMESTAMP" # Truncate to maximum length |