From 96ee0246ce52012644dd18cf360e64c49016fb7f Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Sat, 21 Apr 2018 22:59:58 +0100 Subject: [PATCH] runtc: remove unused gem5 argument due to qemu / gem5 unification --- runtc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/runtc b/runtc index 4adf51c..a53d983 100755 --- a/runtc +++ b/runtc @@ -7,9 +7,6 @@ while getopts a:gh OPT; do a) arch="$OPTARG" ;; - g) - gem5=true - ;; h) printf "Usage: $0 TOOL [TOOL_ARGS]... Call a built ToolChain tool. Example: @@ -23,6 +20,6 @@ done shift "$(($OPTIND - 1))" tool="$1" shift -set_common_vars "$arch" "$gem5" +set_common_vars "$arch" "${buildroot_out_dir}/host/bin/"*-buildroot-*"${tool}" "$@" exit "$?"