diff options
Diffstat (limited to 'scripts/mkcompile_h')
-rwxr-xr-x | scripts/mkcompile_h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/mkcompile_h b/scripts/mkcompile_h index 5f44009..f221ddf 100755 --- a/scripts/mkcompile_h +++ b/scripts/mkcompile_h @@ -4,8 +4,7 @@ TARGET=$1 ARCH=$2 SMP=$3 PREEMPT=$4 -RT=$5 -CC=$6 +CC=$5 vecho() { [ "${quiet}" = "silent_" ] || echo "$@" ; } @@ -58,7 +57,6 @@ 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 |