runtc: remove unused gem5 argument due to qemu / gem5 unification

This commit is contained in:
Ciro Santilli
2018-04-21 22:59:58 +01:00
parent 5ff3999199
commit 96ee0246ce

5
runtc
View File

@@ -7,9 +7,6 @@ while getopts a:gh OPT; do
a) a)
arch="$OPTARG" arch="$OPTARG"
;; ;;
g)
gem5=true
;;
h) h)
printf "Usage: $0 TOOL [TOOL_ARGS]... printf "Usage: $0 TOOL [TOOL_ARGS]...
Call a built ToolChain tool. Example: Call a built ToolChain tool. Example:
@@ -23,6 +20,6 @@ done
shift "$(($OPTIND - 1))" shift "$(($OPTIND - 1))"
tool="$1" tool="$1"
shift shift
set_common_vars "$arch" "$gem5" set_common_vars "$arch"
"${buildroot_out_dir}/host/bin/"*-buildroot-*"${tool}" "$@" "${buildroot_out_dir}/host/bin/"*-buildroot-*"${tool}" "$@"
exit "$?" exit "$?"