Files
linux-kernel-module-cheat/gem5-shell
2018-06-20 11:50:36 +01:00

19 lines
373 B
Bash
Executable File

#!/usr/bin/env bash
. common
while getopts M:n: OPT; do
case "$OPT" in
M)
common_gem5_variant="$OPTARG"
;;
n)
common_run_id="$OPTARG"
;;
?)
exit 2
;;
esac
done
shift "$(($OPTIND - 1))"
set_common_vars -M "$common_gem5_variant" -n "$common_run_id" "$arch" true
"${common_gem5_m5term}" localhost "$common_gem5_telnet_port"